09 2012 档案

摘要:public static DateTime BytesToDateTime(byte[] bytes, int offset) { if (bytes != null) { long ticks = BitConverter.ToInt64(bytes, offset); if (ticks < DateTime.MaxValue.Ticks && ticks > DateTime.MinValue.Ticks) { DateTime dt = new DateTime(ticks); return dt; } } return new DateTime(); } 阅读全文
posted @ 2012-09-21 11:10 94cool 阅读(5238) 评论(0) 推荐(1)
摘要:from:http://www.cnblogs.com/goosao/archive/2011/09/23/2186412.html一、什么是EseNtEseNt(Extensible Storage Engine)是一个原生支持Windows的嵌入式数据库引擎,属于非关系型数据库(NoSql),运行于Windows平台。性能和可靠性已经受住了时间的考验,每秒可以执行大约10万次插入操作够变态。EseNt数据库引擎遵循开源软件规则,可通过以下网址下载或查看更多的详细:http://managedesent.codeplex.com/msdn的Api描述:http://msdn.microsof 阅读全文
posted @ 2012-09-14 15:56 94cool 阅读(3078) 评论(0) 推荐(2)