上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 49 下一页
摘要: 微型数据库SQLite拥有着大多数大型数据库无可比拟的灵活和精简。你可以用所有想象得到的开发语言去开发一个微型的数据库。你可以在这里找到所有想要的信息http://www.sqlite.org/。它支持了大多数关系数据库的基本特性,但是这使得数据库的应用变的很灵活。下面是一个用C++操作SQLite数据库的例子。1. 你需要先从官网上下载SQLite的源代码文件,因为是开源的项目,所以我们可以拷贝... 阅读全文
posted @ 2010-04-16 23:40 moonz-wu 阅读(2066) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--BOOLLoadFileResource(constwstring&strName,HMODULEhDll,intresourceID,string&outputBuf){HGLOBA... 阅读全文
posted @ 2010-04-10 09:05 moonz-wu 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 1. How to get the id of current inserted record?using @@identity keyword.E.G.create table table1 (id int identity(1,1) not null, name nvarchar(64))goinsert into table1('Hello world')goselect @@identit... 阅读全文
posted @ 2010-04-10 09:02 moonz-wu 阅读(1098) 评论(3) 推荐(0) 编辑
摘要: 在SQL server中经常会转换string到datetime类型,最常用的函数就是Convert。那么对Convert这个函数,不得不详细的研究一下。Convert这个函数的功能很强大,格式又很简单CONVERT ( data_type [ (length ) ] , expression [ , style ] )。单就将string到datetime类型的转换就有很多样式。如: Conve... 阅读全文
posted @ 2010-03-31 21:00 moonz-wu 阅读(4296) 评论(1) 推荐(0) 编辑
摘要: If you meet the problem which give out an alert said “Your current security settings prohibitcopying or moving files from this zone.”on Exchange Server, pleasefollow the below steps to res... 阅读全文
posted @ 2010-03-31 20:59 moonz-wu 阅读(191) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 49 下一页