java.sql.Statement.executeQuery(String sql) throws SQLException when DELETE sql query is used

4k Views Asked by At

I know that to execute sql DELETE statement, I need to use executeUpdate(). However my need is to support only SELECT statment, hence I am using executeQuery(String sql). My db is Oracle.

My problem is, I am using java.sql.Statement.executeQuery(String sql) in a desktop based application, a textbox in our app accepts any kind of query and while testing we found that executeQuery(sql) is actually executing a DELETE query, i.e it is successfully deleting a record and then throwing error -SQLException.

  1. Shouldn't the api not allow DELETE query to be executed ?.
  2. What can be done to prevent DELETE query to be executed by Statement.executeQuery api ?
1

There are 1 best solutions below

7
On

You will need to explicitely manage not execute INSERT, UPDATE & DELETE queries through executeQuery() method. This is as per the JDBC specification so it will accept delete queries as well and will throw an exception.

executeQuery() is used for SELECT sql operation
executeUpdate() is used for INSERT, UPDATE and DELETE sql operation.

your query is for DELETE operation thus please use stmt.executeUpdate();

As you mentioned the you are getting this from a textbox form user, You can add the validations on the query string itself before executing it.

Lets say you get the query in String, you can check if string starts with SELECT then only execute.

if (StringUtils.startsWithIgnoreCaseAndWs(sql, "INSERT") 
                    || StringUtils.startsWithIgnoreCaseAndWs(sql, "UPDATE") 
                    || StringUtils.startsWithIgnoreCaseAndWs(sql, "DELETE") 
                    || StringUtils.startsWithIgnoreCaseAndWs(sql, "DROP") 
                    || StringUtils.startsWithIgnoreCaseAndWs(sql, "CREATE") 
                    || StringUtils.startsWithIgnoreCaseAndWs(sql, "ALTER")
                    || StringUtils.startsWithIgnoreCaseAndWs(sql, "TRUNCATE")) { 

                    // Return message Unable to execute any update or modification queries through executeQuery()
        } else {
        //Execute Query 
}