2007年11月12日
应该有人知道有个东西叫KeyFinder
可是这个东西是图形界面的,让我觉得应用性就不是很强。
于是到网上看了Windows CD Key读取的算法,写了这么一个程序。
其实我的程序就是把KeyFinder分成了两个部分:
2007年10月26日
--建立一个临时表
create table #testtable(
context ntext
);
select * from #testtable
--将本地文件写入表中
BULK INSERT #testtable FROM 'c:\1111.txt'
WITH (
DATAFILETYPE = 'char',
KEEPNULLS
)
--drop table #testtable;