摘要:
//获取连接字符串,不过要在"引用"中添加对Configuration的引用public static string GetConnStr(){ return system.Configuration.ConfigurationManager.AppSettings["ConnStr"];}2//获取连接对象,直接是打开过的 public static SqlConnection GetConn() { SqlConnection Conn = new SqlConnection(GetConnStr()); ... 阅读全文
摘要:
1(1) 如果使用System.Configuration.ConfigurationManager.AppSettings["ConnStr"];来得到连接字符串,必须:右击项目中的“引用",选择"添加引用",选择 System.Configuration。 阅读全文