level 5
SQLSERVER认证模式:
SqlConnection sqlCon = new SqlConnection();
sqlCon.ConnectionString = "Data Source=;Initial Catalog=;User Id=sa;Password=123456;";
sqlCon.Open();
windows认证模式:
Data Source=.;Initial Catalog=数据库;Integrated Security=True
2014年04月25日 04点04分
1