Is there any sql query validator on the outside or in any language to check the syntax of the query before executing in the database ?. In my current project, I need to check the sql query in flex before it goes back to the background, it must pass many layers before it gets to the database, and getting into the database and returning with an exception is too expensive. So they need sql validator validation in front of it to at least say that it is a valid query.
source
share