c#登录界面程序设计连接数据库 c#与数据库连接的详细步骤
C#简单与数据库连接的登录界面
简单 适合初学者
数据库连接部分
SqlConnection con = new SqlConnection("Data Source=.;Initial Catalog=chaoshi;Integrated Security=True");
con.Open();
String sql = "select * from [User]";
SqlCommand comm = new SqlCommand(sql, con);
SqlDataReader read = comm.ExecuteReader();