主题:ASP.NET 数据库联接问题?
knife114
[专家分:0] 发布于 2006-04-23 18:06:00
我的sql2000 启动是用windows身份验证,而不是sql server身份验证
这样的话数据库联接应该怎么办?
uid=?和pwd=?
应该写什么?
SqlConnection con = new SqlConnection("server= .;database=*;uid=?;pwd=?;");
回复列表 (共4个回复)
沙发
wwwxuehu [专家分:20] 发布于 2006-04-23 18:47:00
不用写,uid=""和pwd=""就可以了
板凳
huyejun [专家分:150] 发布于 2006-04-23 21:47:00
Integrated Security=SSPI
windows集成验证就是用这个吧,你可以用vs 提供的工具嘛
3 楼
至尊宝 [专家分:90] 发布于 2006-04-25 00:58:00
private static string connString="Server=localhost;uid=sa;pwd=;database=newforum";
public static string ConnString
{
get
{
return connString;
}
}
调用:
SqlConnection conn = new SqlConnection(MyClass.ConnString);
string sqlstr="select * from loginuser where (username='"+name+"') and ("
+"userpwd='"+pwd+"')";
SqlCommand command = new SqlCommand(sqlstr,conn);
conn.Open();
4 楼
ldw521 [专家分:50] 发布于 2006-04-25 22:43:00
SqlConnection con = new SqlConnection("server= .;database=*;uid=sa;pwd=;");
我来回复