摘要:
构造函数1.new Date() 如果没有参数,则Date的构造器会依据系统设置的当前时间来创建一个Date对象。2.new Date(value) value代表自1970年1月1日00:00:00 (世界标准时间) 起经过的毫秒数。3.new Date(dateString) dateStrin 阅读全文
摘要:
JavaScript数组的长度和元素类型都是非固定的。因为数组的长度可随时改变,并且其数据在内存中也可以不连续,所以 JavaScript 数组不一定是密集型的,这取决于它的使用方式。1.Array.length 获取或设置数组长度。2.Array.prototype 通过数组的原型对象可以为所有数 阅读全文
摘要:
1.增、删、改通用方法 2.读取1行记录 3.读取n行记录 4.读取第1行第1列记录 5.分页查询 6.执行事务 7.PSqlCommandModel /// <summary> /// CommandModel /// </summary> public struct PSqlCommandMod 阅读全文
摘要:
1.添加 /// <summary> /// 添加 /// </summary> /// <param name="newEntity"></param> /// <returns></returns> public static int Insert(Person newEntity) { str 阅读全文
摘要:
1.增、删、改通用方法 2.读取1行记录 3.读取n行记录 4.读取第1行第1列记录 5.执行事务 6.批量添加 7.分页查询 8.辅助类 CommandModel 和 PageData<T> /// <summary> /// CommandModel /// </summary> public 阅读全文
摘要:
1.添加数据 /// <summary> /// 添加数据 /// </summary> /// <param name="newEntity"></param> /// <returns></returns> public static int Insert(Student newEntity) 阅读全文