我正在运行执行查询的方法,然后在关闭连接之前尝试执行另一个查询。第一个查询执行正常,但第二个查询导致:
SqlCommand.ExecuteScalar()方法的InvalidOperationException。
我早些时候运行得很完美,但有些事情发生了变化,我似乎无法追查。我在执行查询之前测试连接是否已关闭或为空,但它不是null或关闭。所以这个让我很困惑。任何人都知道发生了什么?
正在执行的查询非常简单:
SELECT COUNT(*)
FROM browsers;
我已经在SQL Server Management Studio中针对数据库对此进行了测试,它运行正常。
internal static String[,] executeSelect(SqlConnection conn, Query query, Editor reference)
{
if (conn == null)
{
throw new System.ArgumentNullException("The SqlConnection parameter to method CSED.SQLServerdb.executeSelect(...) is null");
}
if (query == null)
{
throw new System.ArgumentNullException("The Query parameter to method CSED.SQLSererdb.executeSelect(...) is null");
}
String[,] data = null;
SqlCommand cmd = null;
SqlDataReader rdr = null;
SqlCommand cmd2 = null;
SqlCommand cmd3 = null;
try
{
Debug.WriteLine("SQLServerdb.executeSelect - query: " + query.ToString());
cmd = new SqlCommand(query.ToString(), conn);
rdr = cmd.ExecuteReader();
Field[] flds = query.Fields;
int columns = flds.Length;
//Debug.WriteLine("SQLServerdb.executeSelect -columns: " + columns);
int recordCount = 0;
List<TableRow> rows = new List<TableRow>();
TableRow tr = null;
while (rdr.Read())
{
tr = new TableRow();
recordCount++;
for (int i = 0; i < columns; i++)
{
tr.Add(DRExtension.GetStringOrNull(rdr, i));
}
rows.Add(tr);
}
data = convert2DArray(rows, columns);
//If reference to the class Editor is null then this Database class isn't being used
//in conjunction with the Editor class. Therefore, we don't need to calculate the number
//of records returned from the query.
if (reference != null && reference.IsUsingSSP)
{
bool flag = false;
int foundrows = 0;
//GET THE NUMBER OF RECORDS RETURNED BASED ON THE ORIGINAL QUERY.
String queryStr = "";
if (query.HaveWhereConditions)
{
queryStr = "SELECT COUNT(*) FROM " + query.GetParentTable() + query.prepareWhere(query.WhereConditions);
}
else
{
queryStr = "SELECT COUNT(*) FROM " + query.GetParentTable();
flag = true;
}
Debug.WriteLine("queryStr: " + queryStr);
if(conn.State == ConnectionState.Closed)
Debug.WriteLine("conn is closed");
if(conn == null)
Debug.WriteLine("conn is NULL");
cmd2 = new SqlCommand(queryStr, conn);
object result = cmd2.ExecuteScalar(); //This is where I get the error
if (result != null)
{
foundrows = Convert.ToInt32(result);
query.IFilteredTotal = foundrows;
}
//Debug.WriteLine("SQLServerdb.executeSelect - foundrows: " + foundrows);
//GET THE TOTAL NUMBER OF RECORDS IN THE TABLE.
if (flag == false)
{
queryStr = "SELECT COUNT(*) FROM " + query.GetParentTable();
//Debug.WriteLine("SQLServerdb.executeSelect - queryStr: " + queryStr);
cmd3 = new SqlCommand(queryStr, conn);
result = cmd3.ExecuteScalar();
if (result != null)
{
int r = Convert.ToInt32(result);
// Debug.WriteLine("SQLServerdb.executeSelect - Number of Records in the Table: " + r);
query.ITotal = r;
}
}
else
{
query.ITotal = foundrows;
}
}
}
catch (SqlException sqle)
{
String extra = "SQL Problem: " + sqle.Message + Constants.NEWLINE;
extra += "Vendor Error: " + sqle.ErrorCode + Constants.NEWLINE;
log.Error(extra + sqle.StackTrace);
Debug.WriteLine(extra + sqle.StackTrace);
}
catch (Exception e)
{
log.Error("SQLServerdb.executeSelect - query: " + query.ToString());
log.Error(e.StackTrace);
Debug.WriteLine(e.StackTrace);
}
finally
{
// Always make sure result sets and statements are closed,
// and the connection is returned to the pool
if(cmd != null)
{
cmd.Dispose();
cmd = null;
}
if (cmd2 != null)
{
cmd2.Dispose();
cmd2 = null;
}
if (cmd3 != null)
{
cmd3.Dispose();
cmd3 = null;
}
if (rdr != null)
{
rdr.Close();
rdr.Dispose();
rdr = null;
}
if (conn != null)
{
conn.Close();
conn.Dispose();
conn = null;
}
}
return data;
}//end executeSelect me
答案 0 :(得分:1)
执行COUNT命令时,先前的SqlDataReader仍处于打开状态。这会导致错误,因为as stated in MSDN
在使用SqlDataReader时,关联的SqlConnection是 忙于服务SqlDataReader,没有其他操作可以 在SqlConnection上执行而不是关闭它。情况就是这样 直到调用SqlDataReader的Close方法。例如, 在调用Close
之后才能检索输出参数
因此,如果这是导致错误的原因,则应在同一连接上发出另一个命令之前添加rdr.Close
。 (或者只是将MultipleActiveResultSets = True添加到您的连接字符串中)
一个侧面但非常重要注意:您创建字符串以执行的架构存在缺陷。对于每个与数据库相关的代码,SQL Injection都是危险的可能性。您应该在交易工具中添加Parameterized Queries。