Variable column names using prepared statements

This indicates a bad DB design. The user shouldn’t need to know about the column names. Create a real DB column which holds those “column names” and store the data along it instead.

And any way, no, you cannot set column names as PreparedStatement values. You can only set column values as PreparedStatement values

If you’d like to continue in this direction, you need to sanitize the column names (to avoid SQL Injection) and concatenate/build the SQL string yourself. Quote the separate column names and use String#replace() to escape the same quote inside the column name.

Leave a Comment