i 正在使用VS。 2008年网络,2005年有MSQ服务器,开发一个窗户申请表,但每小时一度出现新的链接或校外错误。
在我目前的法典中,这一联系在进行问答之后开启了但又充满活力的工作。 也许在建立新的行文或新的数据来源时会遇到问题,而不能满足连接“努力”
这是我的法典。
/////////
private void button1_Click(object sender, EventArgs e)
{
try
{
//setData();
string ConnectingString = @"Data Source=SERVER1SQLEXPRESS;Initial Catalog=Alkawthar;Integrated Security=True;Pooling=False";
qry = "SELECT * FROM Table1";
//reader = db.select_data(qry);
ds1 = new DataSet();
conn = new SqlConnection(ConnectingString);
conn.Open();
MessageBox.Show("connection opened");
da.Fill(ds1,"Workers");
NavigateRecords();
MaxRows = ds1.Tables["Workers"].Rows.Count;
string sql = "SELECT * From tblWorkers";
da = new System.Data.SqlClient.SqlDataAdapter(sql, conn);
conn.Close();
MessageBox.Show("connection closed");
conn.Dispose();
}
catch (Exception ex)
{
MessageBox.Show("exception");
MessageBox.Show(ex.Message);
}
}
/////////////////
Fill throws an exception also when i use reader it return null although there is data in DB thanks