首页上一页 1 下一页尾页 1 条记录 1/1页
数据库连接不上
发表在C#图书答疑
2008-02-22
是否精华
是
否
版块置顶:
是
否
<P>所用代码:</P>
<P> protected void Page_Load(object sender, EventArgs e)<BR> {<BR> SqlConnection con = new SqlConnection("server=(local);user id=sa;pwd=123456;DataBase=db_19");<BR> con.Open();<BR> string SqlStr = "select * from tb_Affiche where id=1";<BR> SqlDataAdapter ada = new SqlDataAdapter(SqlStr, con);<BR> DataSet ds = new DataSet();<BR> ada.Fill(ds, "tb_Affiche"); <BR> DataRowView dv = ds.Tables["tb_Affiche"].DefaultView[0];<BR> labaffiche.Text = dv["dc"].ToString();<BR> }</P>
<P>运行结果为:</P>
<P><STRONG>说明: </STRONG><FONT face=Arial>执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。 <BR><BR></FONT><B>异常详细信息: </B><FONT face=Arial>System.Data.SqlClient.SqlException: 用户 'sa' 登录失败。</FONT></P>
<P><FONT face=Arial>应该怎么改?</FONT></P>
<P><FONT face=Arial></FONT> </P>
<P> protected void Page_Load(object sender, EventArgs e)<BR> {<BR> SqlConnection con = new SqlConnection("server=(local);user id=sa;pwd=123456;DataBase=db_19");<BR> con.Open();<BR> string SqlStr = "select * from tb_Affiche where id=1";<BR> SqlDataAdapter ada = new SqlDataAdapter(SqlStr, con);<BR> DataSet ds = new DataSet();<BR> ada.Fill(ds, "tb_Affiche"); <BR> DataRowView dv = ds.Tables["tb_Affiche"].DefaultView[0];<BR> labaffiche.Text = dv["dc"].ToString();<BR> }</P>
<P>运行结果为:</P>
<P><STRONG>说明: </STRONG><FONT face=Arial>执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。 <BR><BR></FONT><B>异常详细信息: </B><FONT face=Arial>System.Data.SqlClient.SqlException: 用户 'sa' 登录失败。</FONT></P>
<P><FONT face=Arial>应该怎么改?</FONT></P>
<P><FONT face=Arial></FONT> </P>