I am inserting data to a MySQL DB, but get an error, when executing the insert statement:
The ResultSet can not be null for Statement.executeQuery.
Although if i check the database table, I find that the values have been successfully inserted. This is confusing.
Code Snippet
Connection connection = null;
connection = DriverManager.getConnection("jdbc:google:rdbms://name-of-instance");
Statement check = connection.createStatement();
java.sql.ResultSet resultset = null;
resultset = check.executeQuery("insert into table_name values (values-inserted-here);");
To execute queries that update, delete or insert any data in your DB, you cannot use
executeQuery(String sql)
(check here the docs), butexecuteUpdate(String sql)
instead.So instead of:
You should do:
The
ResultSet
is always null in an insert, delete or update, that is why it was giving you that error. If you useexecuteUpdate
the error should be gone.Hope it helps!