Due to circumstances outside our control (using code written by a 3rd party, in other words), we find ourselves needing to rewrite SQL statements with inline values into prepared statements. Right now, we're using a horrid set of regular expressions that catch most of the cases, but still fail on a few (and generally fail horribly, producing invalid SQL).
It's looking like we will need to actually parse the SQL, substituting "?" parameters for the explicit string and numeric values, and collecting the values for injection into the new prepared statement.
- Has anyone already done this?
- If you haven't, but you've used one of the Java SQL parsers, would you recommend that parser for this purpose?
Here's an example of the "hairier" sort of SQL we're dealing with and would like to rewrite:
rewrite from
SELECT COL1 FROM TB1 WHERE LOWER(COL2) = LOWER('foo bar ' || '&' || ' Abc(' || '''' || ')')
AND COL3 = 2 AND COL4 = 1
to
SELECT COL1 FROM TB1 WHERE LOWER(COL2) = LOWER(? || ? || ? || ? || ?)
AND COL3 = ? AND COL4 = ?
applied to ("foo bar ", "&", " Abc(", "'", ")", 2, 1)