代码改变世界

随笔档案-2010年01月

ORM映射框架总结--终极JSON

2010-01-22 17:58 by 贺臣, 3191 阅读, 收藏, 编辑
摘要: 1. 简单介绍一下JSON  JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。易于人阅读和编写。同时也易于机器解析和生成。它基于JavaScript的一个子集。 JSON采用完全独立于语言的文本格式。也正是因为这样,它能够在各种计算机语言中蓬勃发展。  JSON 的结构:  1. “名称/值”对的集合(A collection ... 阅读全文

ORM映射框架总结--日志处理

2010-01-22 17:18 by 贺臣, 2842 阅读, 收藏, 编辑
摘要: 在我们做项目的过程中,日志跟踪异常是非常必要的,当程序发布到服务器上时,如果出现异常直接抛出给用户这是非常不友好的。对于不懂程序的用户来说,这回让人感觉莫名其妙,对于那些程序高手,可能就是攻破这个网站的关键。  在asp.net 程序的web.config 配置文件中有如下两个节点作为程序异常配置:  (1)<customErrors>节点    <customErrors>... 阅读全文

spring jar 包详解

2010-01-06 16:03 by 贺臣, 661 阅读, 收藏, 编辑
摘要: spring.jar是包含有完整发布的单个jar包,spring.jar中包含除了 spring-mock.jar里所包含的内容外其它所有jar包的内容,因为只有在开发环境下才会用到spring-mock.jar来进行辅助测试, 正式应用系统中是用不得这些类的。除了spring.jar文件,Spring还包括有其它13个独立的jar包,各自包含着对应的Spring组件,用户可以根据自己的需要来选择组合自己的jar包,而不必引入整个spring.jar的所有类文件。(1) spring-core.jar这个jar文件包含Spring框架基本的核心工具类,Spring其它组件要都要使用到这个包里的 阅读全文

ORM映射框架总结--Flash 处理

2010-01-02 14:34 by 贺臣, 938 阅读, 收藏, 编辑
摘要: 代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1/**2*3*2009-4-174*5*6*根据flash读取其宽度和高度7**/8usingSystem;9usingSystem.Collections.Generic;10usingSyst... 阅读全文

ORM映射框架总结--加密处理

2010-01-02 14:26 by 贺臣, 898 阅读, 收藏, 编辑
摘要: 1.MD5 加密处理代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1/**2*日期:2009-3-153*作者:4*功能:MD5加密及验证5**/6usingSystem;7usingSystem.Collections.Generic;8usi... 阅读全文

ORM映射框架总结--文件下载

2010-01-02 14:14 by 贺臣, 939 阅读, 收藏, 编辑
摘要: 本段代码提供了asp.net 中的各种文件下载方式。代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1/**2*日期:2009-3-133*作者:4*功能:下载文件5**/67usingSystem;8usingSystem.Configurati... 阅读全文

ORM映射框架总结--Excel 操作

2010-01-02 14:09 by 贺臣, 1201 阅读, 收藏, 编辑
摘要: 在很多时候,我们需要将查询的数据做成报表统计,然后生成Excel文档格式的。再此提供了将DataTable 数据导出excel 的方法代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1/**2*3*2009-5-24*5*6*将DataTable导... 阅读全文

ORM映射框架总结--数据操作(七)

2010-01-02 14:03 by 贺臣, 1424 阅读, 收藏, 编辑
摘要: 2. 数据库操作实现类 SqlHelper代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--/****2009-4-22***数据库操作的公共类**/usingSystem;usingSystem.Collections.Generic;usingS... 阅读全文

ORM映射框架总结--数据操作(六)

2010-01-02 13:50 by 贺臣, 1236 阅读, 收藏, 编辑
摘要: 1. 数据库操作接口 IDbHelper代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--/****2009-4-22***提供各种数据库操作方法以及实体类操作方法**/usingSystem;usingSystem.Collections.Gen... 阅读全文

ORM映射框架总结--数据操作(五)

2010-01-02 12:49 by 贺臣, 1106 阅读, 收藏, 编辑
摘要: 1.数据库加载驱动和操作接口 IDbProvider代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1/**2*3*2009-4-224*5*6*数据库操作加载驱动接口,7*提供了数据库操作的各种命令8**/9usingSystem;10using... 阅读全文

ORM映射框架总结--数据操作(四)

2010-01-02 12:11 by 贺臣, 1420 阅读, 收藏, 编辑
摘要: 1.BaseEntityHelper 解析实体类特性代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1/**2*3*2009-4-174*5*6*字段的特性7**/8usingSystem;9usingSystem.Collections.Gen... 阅读全文

ORM映射框架总结--数据操作(三)

2010-01-01 11:35 by 贺臣, 756 阅读, 收藏, 编辑
摘要: 1. 辅助类 DataType代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1/**2*3*2009-4-114*5*6*数据库各种数据类型枚举7**/8usingSystem;9usingSystem.Collections.Generic;... 阅读全文

ORM映射框架总结--数据操作(二)

2010-01-01 10:53 by 贺臣, 1592 阅读, 收藏, 编辑
摘要: 1.TableInfo 封装实体特性类代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1/**2*3*2009-4-114*5*6*表实体的特性信息7**/8usingSystem;9usingSystem.Collections.Generic... 阅读全文


作者:情缘
出处:http://www.cnblogs.com/qingyuan/
关于作者:从事仓库,生产软件方面的开发,在项目管理以及企业经营方面寻求发展之路
版权声明:本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接。
联系方式: 个人QQ  821865130 ; 仓储技术QQ群 88718955,142050808 ;
吉特仓储管理系统 开源地址: https://github.com/hechenqingyuan/gitwms

点击右上角即可分享
微信分享提示