2014年4月4日
摘要:
/// <summary> /// 计算CRC-16 /// </summary> /// <param name="data"></param> /// <returns>高位在前</returns> public byte [] CRC_16(string data) { if ((data.L
阅读全文
posted @ 2014-04-04 15:11
wolf12
阅读(3098)
推荐(0)
2014年4月3日
摘要:
USE [master]GO/****** Object: StoredProcedure [dbo].[p_lockinfo] Script Date: 04/03/2014 15:12:40 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGO
阅读全文
posted @ 2014-04-03 15:13
wolf12
阅读(313)
推荐(0)
摘要:
SET STATISTICS PROFILE ON SET STATISTICS IO ON SET STATISTICS TIME ON --GO /*--你的SQL脚本开始*/SELECT * FROM dbo.Station--GO /*--你的SQL脚本结束*/ SET STATISTICS
阅读全文
posted @ 2014-04-03 14:09
wolf12
阅读(171)
推荐(0)
2014年4月2日
摘要:
string dd = ds.Tables[0].Rows[0][0, DataRowVersion.Original].ToString() ;
阅读全文
posted @ 2014-04-02 13:00
wolf12
阅读(349)
推荐(0)
2014年3月20日
摘要:
select name from sysobjects o, syscomments s where o.id = s.id and text like '%tempKYGS%'and o.xtype = 'P'
阅读全文
posted @ 2014-03-20 10:13
wolf12
阅读(145)
推荐(0)