我建了一个窗体。叫做login打算在窗体打开后直接读入数据。
代码:
public login()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
string database="workstation id=localhost;Integrated Security=SSPI;database=jxcbook";
string senttablename="用户清单";
SqlConnection myConnection=new SqlConnection(database);
myConnection.Open();
SqlDataAdapter da1=new SqlDataAdapter (senttablename,myConnection);
DataSet ds=new DataSet();
da1.Fill(ds);
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
在这行
SqlDataAdapter da1=new SqlDataAdapter (senttablename,myConnection);报错
未处理的“System.Data.SqlClient.SqlException”类型的异常出现在 system.data.dll 中。
其他信息: 系统错误。
怎么解决?