Hello,
I'm getting the following error when running a large SQL.
I am using the SqlCommand and calling the ExecuteNonQuery
with the CommandTimeout set to 0.
Here is the example of the code
sqlCommand = new SqlCommand(m_SQ LBuffer, (SqlConnection)
m_connection);
sqlCommand.Comm andTimeout=0;
//I GET THE EXCEPTION ON THE LINE BELOW
m_numOfRowAffec ted = sqlCommand.Exec uteNonQuery();
//
//Throws an exception of System.SystemEx ception {"General
network error. Check your network documentation." }
Does anyone know what this exception means?
Thanks
I'm getting the following error when running a large SQL.
I am using the SqlCommand and calling the ExecuteNonQuery
with the CommandTimeout set to 0.
Here is the example of the code
sqlCommand = new SqlCommand(m_SQ LBuffer, (SqlConnection)
m_connection);
sqlCommand.Comm andTimeout=0;
//I GET THE EXCEPTION ON THE LINE BELOW
m_numOfRowAffec ted = sqlCommand.Exec uteNonQuery();
//
//Throws an exception of System.SystemEx ception {"General
network error. Check your network documentation." }
Does anyone know what this exception means?
Thanks
Comment