I have a string that I want to insert into a column of a table using a sql command. If I have
string someText = 'onetwothreetest';
clsDB.ExecuteSQL("INSERT INTO tbl_SOMETABLE (SOMECOLUMN) VALUES (????)")
How would I put the string, someText, into the ???? without it giving me an error.