On Fri, 20 Apr 2007, Giuseppe Sacco wrote:
> I use addBatch() very often when, but I use it with statement that work
> on different tables. I think it would really be difficult to check if
> the statements are referring the same table and the same field.
Well Statement.addBatch and PreparedStatement.addBatch are different
beasts. It wouldn't be worth it to try and parse each Statement, but
parsing the PreparedStatement would be possible.
Kris Jurka