For some sql statements I can't use a prepared statment, for instance:
SELECT MAX(AGE) FROM ?
For instance when I want to vary the table. Is there a utility that sanitizes sql in Java? There is one in ruby.
|
|
|||||
|
|
|
So there isn't a library then is what I'm seeing. |
||
|
|
|
|
Right, prepared statement query parameters can be used only where you would use a single literal value. You can't use a parameter for a table name, a column name, a list of values, or any other SQL syntax. So you have to interpolate your application variable into the SQL string and quote the string appropriately. Do use quoting to delimit your table name identifier, and escape the quote string by doubling it:
For example, if your table name is literally
I also agree with @ChssPly76's comment -- it's best if your user input is actually not the literal table name, but a signifier that your code maps into a table name, which you then interpolate into the SQL query. This gives you more assurance that no SQL injection can occur.
|
||||
|
|
|
In this case you could validate the table name against the list of available tables, by getting the table listing from the DatabaseMetaData. In reality it would probably just be easier to use a regex to strip spaces, perhaps also some sql reserved words, ";", etc from the string prior to using something liek String.format to build your complete sql statement. The reason you can't use preparedStatement is because it is probably encasing the table name in ''s and escaping it like a string. |
||
|
|
|
|
Not possible. Best what you can do is to use
Note that this doesn't avoid SQL injection risks. If the
Hope this helps. [Edit] I should add: do NOT use this for column values where you can use [Edit2] Best would be to not let the user/client be able to enter the tablename the way it want, but better present a dropdown containing all valid tablenames (which you can obtain by |
|||
|