Check the command text/query pass into the SqlCommand
, which is what it is complaining about, but error doesn't show until you execute the command with ExecuteNonQuery
:
//
// Summary:
// Initializes a new instance of the System.Data.SqlClient.SqlCommand class
// with the text of the query and a System.Data.SqlClient.SqlConnection.
//
// Parameters:
// cmdText:
// The text of the query.
//
// connection:
// A System.Data.SqlClient.SqlConnection that represents the connection to an
// instance of SQL Server.
public SqlCommand(string cmdText, SqlConnection connection);