To fix your code, escape all single quotes with an additional single quote. However I agree with Oded... you need to be using a parameterized query, or possibly a stored proc.
public bool updateCMStable(int id, string columnName, string columnText)
{
if(!string.IsNullOrEmpty))
{
switch(columnName)
{
// TODO: change 50 & 100 to the real sizes of your columns,
// and obviously the column names too...
case "column1":
if(columnText.Length > 50)
columnText = columnText.SubString(0, 50);
break;
case "column2":
if(columnText.Length > 100)
columnText = columnText.SubString(0, 100);
break;
etc...
}
}
// replace single quote with double single quotes
columnText = columnText.Replace("'", "''");
string sql = string.Format("UPDATE CMStable SET {0} = '{1}' WHERE cmsID={2}",
columnName,
columnText,
id);
int i = SqlHelper.ExecuteNonQuery(Connection.ConnectionString, CommandType.Text, sql);
return (i > 0);
}
I made some additional corrections to your code.
- You can simply return the result of an if statement when you're returning true | false
- You don't need to catch exceptions if you're simply going to throw it in the catch block
- If you DO catch an exception, do something meaningful with it, and decide to rethrow it, use
throw by itself, or you'll reset the stack trace. Don't use throw ee;
- Replace + type concatination with string.Format if it becomes too unreadable.
Edit:
The error you posted is happening because the length of the data being passed in is longer than the specified length of the column. Since you're using dynamic SQL, the only way around it that I can see is to use a case statement. Each field may have a different size, or maybe not, but the string will have to be truncated to fit to avoid the error. If all the field sizes are the same, you won't need the case statement.