I am trying to execute an INSERT query in a mysql DB, but it doesn't happen anything except that the code executions stops and nothing gets inserted. Here is the code (the connection is made at another point and is working):

            query = string.Format("INSERT INTO users (username, settings) VALUES('{0}', '{1}')", userName, sw.ToString());
            myCommand = new MySqlCommand();
            myCommand.CommandText = query;
            myCommand.Connection = con;
            myCommand.ExecuteNonQuery();

If I step the code, it stops after executenonquery, so obvisously something is wrong there. God I hate that it doesn't throw an error at me :(

link|improve this question

It could be a lot of different things causing this to be honest. What is ExecuteNonQuery() returning? – Ignacio Oct 30 '11 at 23:18
The problem is that it doesn't return anything, the code hangs after it is executed. The form is shown but things aren't working as they should etc. I have tried executing the query directly against the db and it works. – toxicious Oct 30 '11 at 23:35
feedback

2 Answers

up vote 1 down vote accepted

Have you checked the connection is actually open and tried executing the method by assigning the result to an int in a try catch block.

int result;

try 
{
    if (conn.State != ConnectionState.Open)
                    conn.Open();

    result = Convert.ToInt32(dbComm.ExecuteNonQuery());
 }
 catch (Exception ex)
 {
    logger.Error(ex);
 }
 finally
 {
     if (conn.State != ConnectionState.Closed)
                    conn.Close();
 }
link|improve this answer
amazing now it finally threw me an error and I were able to solve it! Thanks! – toxicious Oct 31 '11 at 9:18
feedback

Nothing wrong at that code try to get What ExecuteNonQuery returns! and try to adding Parameters to Commands

link|improve this answer
It is nothing wrong at the query, only the execution itself, it doesn't even return anything, – toxicious Oct 30 '11 at 23:36
It may not be the fix you are looking for, but his suggestion about parameters is something you should probably be doing anyways. May as well try it and see if it works. – Ignacio Oct 30 '11 at 23:45
feedback

Your Answer

 
or
required, but never shown

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