1 write to _cmdTempInsertLong
System.Web (1)
State\sqlstateclientmanager.cs (1)
1380
_cmdTempInsertLong
= new SqlCommand("dbo.TempInsertStateItemLong", _sqlConnection);
8 references to _cmdTempInsertLong
System.Web (8)
State\sqlstateclientmanager.cs (8)
1258
ClearAllParameters(
_cmdTempInsertLong
);
1379
if (
_cmdTempInsertLong
== null) {
1381
_cmdTempInsertLong
.CommandType = CommandType.StoredProcedure;
1382
_cmdTempInsertLong
.CommandTimeout = s_commandTimeout;
1383
_cmdTempInsertLong
.Parameters.Add(new SqlParameter("@id", SqlDbType.NVarChar, ID_LENGTH));
1384
_cmdTempInsertLong
.Parameters.Add(new SqlParameter("@itemLong", SqlDbType.Image, 8000));
1385
_cmdTempInsertLong
.Parameters.Add(new SqlParameter("@timeout", SqlDbType.Int));
1388
return
_cmdTempInsertLong
;