2009年12月3日
摘要: C# , ASP.Net 中 关于 like in 实现参数化查询的问题。2008-09-18 18:17对于 普通的 select等sql语句, 正常的参数化 语句 格式: select * from profile where EmployeeID= @EmployeeID for example: string loginString = "select * from profile wh... 阅读全文
posted @ 2009-12-03 14:09 BobLiu 阅读(3544) 评论(1) 推荐(2)
摘要: 表面上看,可见3个方法都实现了同样的效果!那么请看://string myString = "1234"; string myString = null; int myint = 0;myint = Convert.ToInt32(myString); Console.Write(myint+"\r\n");myint = Int32.Parse(myString); Console.Write(... 阅读全文
posted @ 2009-12-03 13:49 BobLiu 阅读(374) 评论(0) 推荐(0)