i have a SQL query as follows

String S = Editor1.Content.ToString(); 
     Response.Write(S);    
    string sql = "insert into testcase.ishan(nmae,orders) VALUES ('9',@S)"; 
   OdbcCommand cmd = new OdbcCommand(sql, myConn); 
            cmd.Parameters.AddWithValue("@S", S);  
            cmd.ExecuteNonQuery(); 

Error: Column 'orders' cannot be null at System.Data.Odbc.OdbcConnection.HandleError

link|improve this question

3  
seems self-explanatory to me – Mitch Wheat Oct 28 '10 at 10:37
i already have value in the string.but it is not geting into sql query – Ishan Oct 28 '10 at 10:38
1  
odbc - is this by choice ? – f00 Oct 28 '10 at 10:40
sorry din get u. – Ishan Oct 28 '10 at 10:41
Is the column name truly nmae or is it actually name ? – Endy Tjahjono Oct 28 '10 at 10:46
show 1 more comment
feedback

3 Answers

up vote 4 down vote accepted

From the manual:

When CommandType is set to Text, the .NET Framework Data Provider for ODBC does not support passing named parameters to an SQL statement or to a stored procedure called by an OdbcCommand. In either of these cases, use the question mark (?) placeholder. For example:

SELECT * FROM Customers WHERE CustomerID = ?

The order in which OdbcParameter objects are added to the OdbcParameterCollection must directly correspond to the position of the question mark placeholder for the parameter in the command text.

Use this:

string sql = "insert into testcase.ishan(nmae,orders) VALUES ('9', ?)";
OdbcCommand cmd = new OdbcCommand(sql, myConn); 
cmd.Parameters.AddWithValue("you_can_write_anything_here_its_ignored_anyway", S);  
cmd.ExecuteNonQuery(); 
link|improve this answer
and how to define value for '?'. how will query know what is ? – Ishan Oct 28 '10 at 10:46
@user: add a parameter to the collection. It will know from the order it was added: the first parameter added is the first ?, etc. It's in the quote I copied. – Quassnoi Oct 28 '10 at 10:48
Thank you SIR!! its working – Ishan Oct 28 '10 at 10:53
feedback

check the column whether it can accept null value or not.

link|improve this answer
i have defined the column not to accept null values,my string S has value in it but how does my sql query say cannot insert null?? i have data type for order as varchar. – Ishan Oct 28 '10 at 10:43
feedback

it will be helpful to you

cmd.Parameters.Add("@S", OdbcType.Char, S);
link|improve this answer
The best overloaded method match for 'System.Data.Odbc.OdbcParameterCollection.Add(string, System.Data.Odbc.OdbcType, int)' has some invalid arguments – Ishan Oct 28 '10 at 10:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.