ExecuteNonQuery requiere una conexión abierta y disponible. El estado actual de la conexión está cerrado.ExecuteNonQuery requiere una conexión abierta y disponible. El estado actual de la conexión está cerrado
¿Qué estoy haciendo mal aquí? Supongo que puedes reutilizar la conexión.
¡Gracias por cualquier ayuda!
using (SqlConnection cn = new SqlConnection(ConfigurationManager.ConnectionStrings["LocalSqlServer"].ToString()))
{
cn.Open();
// If we are reverting to an old type
if (pageAction == "revert")
{
debug.Text = "FLAG 1";
// Get the revert ID
int revertingID = int.Parse(Request.QueryString["revID"]);
bool rowsReturned = false;
debug.Text = "FLAG 2 - " + revertingID.ToString();
// Set all to 0
using (SqlCommand cmd = new SqlCommand("SELECT ID FROM tblSiteSettings WHERE ID = " + revertingID, cn))
{
// If it exists
SqlDataReader rdr = cmd.ExecuteReader(CommandBehavior.CloseConnection);
if (rdr.Read())
{
rowsReturned = true;
}
rdr.Close();
}
debug.Text = "FLAG 3 - " + rowsReturned.ToString();
// Set new active and reset others
if (rowsReturned == true)
{
using (SqlCommand cmd = new SqlCommand("UPDATE tblSiteSettings SET isActive = 1 WHERE ID = " + revertingID, cn))
{
cmd.ExecuteNonQuery();
}
using (SqlCommand cmd = new SqlCommand("UPDATE tblSiteSettings SET isActive = 0 WHERE ID <> " + revertingID, cn))
{
cmd.ExecuteNonQuery();
}
}
//debug.Text = "FLAG 4 - ";
}
¿La instrucción Using() sus comandos están envueltos en cerrar la conexión cuando descarta el SqlCommand? – Tommy
@Tommy, no tan lejos como yo sepa, la documentación para SqlCommand.Dispose no la menciona, así que supongo que no (http://msdn.microsoft.com/en-us/library/system .data.sqlclient.sqlcommand.dispose.aspx) – Rob
Buena llamada, si la definición de conexión se envolvió en un bloque Using, entonces lo haría. http://stackoverflow.com/questions/410222/does-connection-close-when-command-is-disposed-and-the-connection-is-defined-dire – Tommy