Author
Validate SQL Queries
padmanabh dongre
Greenhorn
Joined: Aug 13, 2001
Posts: 24
posted Feb 18, 2003 23:29:00
0
Hi Is there any way I can validate the syntax of an SQL query in java without actually executing it in the database ? Regards, Padmanabh
kundi kx
Greenhorn
Joined: Feb 03, 2003
Posts: 10
CHeck and see if your Database server has a SQL console you can use, and try your SQL there.
Gregg Bolinger
Ranch Hand
Joined: Jul 11, 2001
Posts: 15230
If you are needing the syntax to be checked in your program, look into Regular Rxpressions for checking the syntax. It's how compilers work.
Avi Abrami
Ranch Hand
Joined: Oct 11, 2000
Posts: 1112
Hi Padmanabh, Asked (and answered -- by me) in this forum: [Assumes you are using an Oracle database!] http://www.coderanch.com/t/298353/JDBC/java/Compiling-SQL-statement-before-execute Good Luck, Avi.
subject: Validate SQL Queries