vote up 4 vote down star
4

One thing that always been a pain is to log SQL (JDBC) errors when you have a PreparedStatement instead of the query itself.

You always end up with messages like:

2008-10-20 09:19:48,114 ERROR LoggingQueueConsumer-52 [Logger.error:168] Error 
executing SQL: [INSERT INTO private_rooms_bans (room_id, name, user_id, msisdn, 
nickname) VALUES (?, ?, ?, ?, ?) ON DUPLICATE KEY UPDATE room_id = ?, name = ?, 
user_id = ?, msisdn = ?, nickname = ?]

Of course I could write a helper method for retrieving the values and parsing/substitute the question marks with real values (and probably will go down that path if I don't get an outcome of this question), but I just wanted to know if this problem was resolved before by someone else and/or if is there any generic logging helper that would do that automagically for me.

Edited after a few answers:

The libraries provided so far seems to be suitable to logging the statements for debugging, which no doubt is useful. However, I am looking to a way of taking a PreparedStatement itself (not some subclass) and logging its SQL statement whenever an error occur. I wouldn't like to deploy a production app with an alternate implementation of PreparedStatement.

I guess what I am looking for an utility class, not a PreparedStatement specialization.

Thanks!

flag

77% accept rate
AFAIK p6spy does not involve using an alternate implementation of PreparedStatement. I think the way it works is that it acts as a proxy to the JDBC driver and logs all the SQL before forwarding it to the driver – Don Oct 20 '08 at 13:40
What DB are you using? I have found that the MySQL driver has the toString implemented on the Prepared statement that has the statement with the values set. – Joshua Jun 19 at 15:55

5 Answers

vote up 1 vote down

we use p6spy to log prepared statements http://www.p6spy.com/

link|flag
Just as an FYI, their website is giving a PHP Error, so I had to go to their SF.net download page: sourceforge.net/project/… – kolrie Oct 20 '08 at 12:10
p6spy.com/download.html – SWD Oct 23 '08 at 16:24
vote up 0 vote down

This looks good: http://www.ibm.com/developerworks/java/library/j-loggable.html

link|flag
... however that applies to debug logging, right? When you already executed a PreparedStatement and you want just to log after an exception, I don't think that would apply, right? You would need to have that enabled by default, which I don't think is a good thing... – kolrie Oct 20 '08 at 12:04
vote up 0 vote down

I still can't find a way to log the SQL statement only when an exception is thrown.

All the suggestions so far uses replacements of PreparedStatement class, like a proxy class that logs the SQL statements and dispatches it to the JDBC driver. Those are excellent replacements for debugging, but not for error logging.

Does anyone have other idea on we could log the exact offending SQL statement, whenever an exception is thrown?

link|flag
vote up 0 vote down
  1. If you are using MySQL, MySQL Connector's PreparedStatement.toString() does include the bound parameters. Though third-party connection pools may break this.

  2. Sub-class PreparedStatement to build up the query string as parameters are added. There's no way to extract the SQL from a PreparedStatement, as it uses a compiled binary form.

LoggedPreparedStatement looks promising, though I haven't tried it.

One advantage of these over a proxy driver that logs all queries is that you can modify the query string before logging it. For example in a PCI environment you might want to mask card numbers.

link|flag
vote up 0 vote down

This is very database-dependent. For example, I understand that some JDBC drivers (e.g. sybase, maybe ms-sql) handle prepared statements by create a temporary stored procedure on the server, and then invoking that procedure with the supplied arguments. So the complete SQL is never actually passed from the client.

As a result, the JDBC API does not expose the information you are after. You may be able to cast your statement objects the internal driver implementation, but probably not - your appserver may well wrap the statements in its own implementation.

I think you may just have to bite the bullet and write your own class which interpolates the arguments into the placeholder SQL. This will be awkward, because you can't ask PreparedStatement for the parameters that have been set, so you'll have to remember them in a helper object, before passing them to the statement.

It seems to me that one of the utility libraries which wrap your driver's implementation objects is the most practical way of doing what you're trying to achieve, but it's going to be unpleasant either way.

link|flag

Your Answer

Get an OpenID
or

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