ExecuteReader:連接屬性有 未初始化。ExecuteReader:連接屬性尚未初始化
我的編碼是
protected void Button2_Click(object sender, EventArgs e)
{
SqlConnection conn = new SqlConnection("Data Source=Si-6\\SQLSERVER2005;Initial Catalog=rags;Integrated Security=SSPI");
SqlDataReader rdr = null;
try
{
// 2. Open the connection
conn.Open();
// 3. Pass the connection to a command object
//SqlCommand cmd = new SqlCommand("select * from Customers", conn);
SqlCommand cmd=new SqlCommand ("insert into time(project,iteration)
values('"+this .name1 .SelectedValue +"','"+this .iteration .SelectedValue +"')");
//
// 4. Use the connection
//
// get query results
rdr = cmd.ExecuteReader();
// print the CustomerID of each record
while (rdr.Read())
{
Console.WriteLine(rdr[0]);
}
}
finally
{
// close the reader
if (rdr != null)
{
rdr.Close();
}
// 5. Close the connection
if (conn != null)
{
conn.Close();
}
}
}
}
}
由於SqlConnection,SqlCommand和SqlReader對象正在使用非託管資源,因此它們是一次性對象,因此在任務完成時處理它們是一種很好的做法。爲了使代碼更具可讀性,您可以使用using指令來執行此操作。 – Beatles1692 2011-05-03 06:56:20
這些答案是正確的。您必須接受。您必須使用您創建的連接初始化sqlcommand連接屬性。 – Saleh 2011-05-03 06:57:53