I have the following MySqlCommand:

Dim cmd As New MySqlCommand
cmd.CommandText = "REPLACE INTO `customer` VALUES( ?customerID, ?firstName, ?lastName)"

With cmd.Parameters
 .AddWithValue("?customerID", m_CustomerID)
 .AddWithValue("?firstName", m_FirstName)
 .AddWithValue("?lastName", m_LastName)
End With

I have a class that handles execution of MySqlCommands and I'd like to have it log every query to a file. I can retrieve the query/command being executed with:

cmd.CommandText

but that just returns the original CommandText with the parameters (?customerID, ?firstName, etc.) and not the actual substituted values added by the AddWithValue functions. How can I find out the actual "final" query that was executed?

link|improve this question

Why do you need to know the "final" prepared statement? – shahkalpesh Aug 30 '09 at 22:15
I'm also needing to do this... ever get an answer? – gap Feb 9 '11 at 15:41
feedback

5 Answers

up vote 1 down vote accepted

You would have to build it yourself.

Parameters are not just plopped into a string and then run as a SQL statement. The RDBMS will actually prepare the SQL and then use the parameter values as needed. Therefore, there's not a single SQL statement going to the server. To see what the SQL would be, you would have to do:

Console.WriteLine("REPLACE INTO `customer` VALUES('" & m_CustomerID & _
    "', '" & m_FirstName & "', '" & m_LastName & "')")
link|improve this answer
The only difference is that this doesn't escape your param values... so that if m_FirstName has a single tick (') in it, this approach will produce a corrupt command string. Using MySqlParameters, Connector/NET will correctly escape the value. So it's not equivalent. – gap Feb 9 '11 at 15:41
feedback

I havn't seen a method for this.

And in any case, prepared statements are sent to the server with the ?customerID,?firstname parameters, and then the actual parameters are sent seperately - the mysql driver doesn't build up a final sql query like you'd do if you didn't use prepared statements.

link|improve this answer
Ah, that makes sense. The reason I'm using prepared statements is to prevent SQL injection. Do you know if the .NET MySQL connector provides proper escape functions or something similar to help me build an injection-safe query prior to executing it? – slkandy Aug 31 '09 at 6:32
feedback

The parameterised method you're using should be okay for preventing SQL injection.

.AddWithValue("?customerID", m_CustomerID)

If m_CustomerID contains the text

Haha I'm stealing your data; drop table whatever;

Then it won't end up being executed on the server as such. The AddWithValue sorts that out for you.

As for the actual executed query, you should be able to get that from the query-log, if it's enabled.

link|improve this answer
feedback

I have the same need.

From what I've read, the query text isn't combined with the param values in the client - they are sent to the server for that.

To inspect what query was actually being sent to the server, I used mysqld logging. For my version of MySQL, I added this entry to the my.cnf:

log=queries.txt

Then, I was able to see clearly the effect of combining command text with parameters: in my case, after restarting the mysqld, I ran my unit tests and then opened the queries.txt file.

HTH!

link|improve this answer
feedback

If you want to manage logging yourself from the .NET application, your best bet is to continue using the MySqlCommand class with parameters to avoid SQL injection; however, when you log the CommandText, loop through the Parameters collection and log each one by name/type/value.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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