visual studio 2008 里C#怎么连接到sql 2005
我是之前装了SQLEXPRESS2005,后来装的VS2008,在里面创建了个windows的项目,就是想C#写个管理员的后台软件,需要连接到数据库。我的数据库是之前装的...
我是之前装了SQL EXPRESS 2005,后来装的VS2008,在里面创建了个windows的项目,就是想C#写个管理员的后台软件,需要连接到数据库。我的数据库是之前装的2005里面建立好的,现在要在程序里连接,就在登陆那块不会用啊,在网上查了老半天问题都没有解决,什么服务器开了啊,协议开了啊,允许远程啊都开了......话说回来我是在自己电脑上用vs连接自己的SQL 2005。。。。
现在是听说vs2008自带了sql 2005express我想这个会不会和我之前装的那个冲突啊?我在开始菜单只有我之前那个SQL SERVER,现在在vs的服务器资源管理器里可以看到连接到自己想要的数据库的连接,但不知到怎么用.....
综上,我就是想写个登陆验证那块代码,跪求高手啊 ,能给个完整代码最好啊.....
string ConnectionString = "server=WIN-POCDJ7KG9EG\\SQLEXPRESS;database=CS_LabManage;uid=sa;pwd=sa";
SqlConnection MyConnection = new SqlConnection(ConnectionString);
//MyConnection.Open();
string strCmd = "select * from dbo.student where Snumber = '" + textBox1.Text + "'and Spassword = '" + maskedTextBox1.Text + "'";
SqlCommand myCommand = new SqlCommand(strCmd, MyConnection);
myCommand.Connection.Open();
int flag = (int)myCommand.ExecuteScalar();
myCommand.Connection.Close();
MyConnection.Close(); 展开
现在是听说vs2008自带了sql 2005express我想这个会不会和我之前装的那个冲突啊?我在开始菜单只有我之前那个SQL SERVER,现在在vs的服务器资源管理器里可以看到连接到自己想要的数据库的连接,但不知到怎么用.....
综上,我就是想写个登陆验证那块代码,跪求高手啊 ,能给个完整代码最好啊.....
string ConnectionString = "server=WIN-POCDJ7KG9EG\\SQLEXPRESS;database=CS_LabManage;uid=sa;pwd=sa";
SqlConnection MyConnection = new SqlConnection(ConnectionString);
//MyConnection.Open();
string strCmd = "select * from dbo.student where Snumber = '" + textBox1.Text + "'and Spassword = '" + maskedTextBox1.Text + "'";
SqlCommand myCommand = new SqlCommand(strCmd, MyConnection);
myCommand.Connection.Open();
int flag = (int)myCommand.ExecuteScalar();
myCommand.Connection.Close();
MyConnection.Close(); 展开
3个回答
展开全部
string ConnStr = "Data Source=.;Initial Catalog=MyDB;User Id=sa;Password=sa123456";
SqlConnection Conn = new SqlConnection(ConnStr);
Conn.Open();
SqlCommand Cmd;
string SQL="select * from table";
Cmd = new SqlCommand(SQL, Conn);
Cmd.ExecuteNonQuery();
Conn.Close();
Conn.Dispose();
SqlConnection Conn = new SqlConnection(ConnStr);
Conn.Open();
SqlCommand Cmd;
string SQL="select * from table";
Cmd = new SqlCommand(SQL, Conn);
Cmd.ExecuteNonQuery();
Conn.Close();
Conn.Dispose();
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询