06 2011 档案

摘要:var validateRegExp={ decmal:"^([+-]?)\\d*\\.\\d+$", //浮点数 decmal1: "^[1-9]\\d*.\\d*|0.\\d*[1-9]\\d*$", //正浮点数 decmal2: "^-([1-9]\\d*.\\d*|0.\\d*[1-9]\\d*)$", //负浮点数 decmal3: "^-?([1-9]\\d*.\\d*|0.\\d*[1-9]\\d*|0?.0+|0)$", //浮点数 decmal4: "^[1-9]\\d*.\\d*|0 阅读全文
posted @ 2011-06-17 09:02 大佬辉 阅读(1913) 评论(4) 推荐(0) 编辑
摘要:MultipleActiveResultSets可以使数据库连接复用。这样就不怕数据库的连接资源被耗尽了。使用方法很简单,只需要把它加到数据的连接字符串中即可。例如:server=(local);Integrated Security = true;database=AdventureWorks;MultipleActiveResultSets=true;测试用例: using System; using System.Threading; using System.Data.SqlClient; using System.Configuration; namespace ConsoleApp 阅读全文
posted @ 2011-06-03 15:11 大佬辉 阅读(485) 评论(1) 推荐(0) 编辑