I'm wanting to write a program that converts a SQL Dynamic Query into a prepared statement in Java.
So if given a string like "SELECT * FROM EMPLOYEE_TABLE WHERE FIRST_NAME='BOB';"
I'd like to convert that to a java prepared statement using code.
Are there any existing tools to do this and if not, can you provide any information on creating such a tool?
Thanks!