Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I determine that particular query will change the state of DB? I use JDBC. Should I use parsing searching for key words like INSERT, DELETE or there are some other ways?

share|improve this question
Do you care if the statement is something that could change the database or do you want to know if something actually will change? – Amir Raminfar Aug 23 '11 at 19:15
The first case. I want to prevent it. – damluar Aug 23 '11 at 19:16
Could you elaborate on why you would like to know that? Do you plan to let end users enter SQL queries directly? – JB Nizet Aug 23 '11 at 19:16
I want to ask user whether he really wants this query to be executed. – damluar Aug 23 '11 at 19:17

5 Answers

up vote 1 down vote accepted

One way:

  1. Execute the query
  2. Check the update count
  3. If updates are made, do your user check
  4. On a positive response, commit the transaction. On negative, roll it back.

There would be variations. Explore the Statement API to get a feel for your options.

Edit: Ensure autocommit is off, or transactionality is out the window!

More edit: As pointed out by commenters, this isn't a scalable solution. For scalability, transactions have to be kept short, and you don't want to have user think time during an open transaction. If there will be multiple users, find a way to do this that doesn't involve holding a transaction open, perhaps with some creative use of statement caching and rollbacks/commits. For better advice, explain more about your requirements.

share|improve this answer
Yes, it's good alternative. Thank you twice :) – damluar Aug 23 '11 at 19:31
Hmm that's still not a good solution because the user can hack by doing SET autocommit = 1; ..... so this is not really safe. Up to you what you do though. It also performs bad because all other changes to the database are on hold until commit. – Amir Raminfar Aug 23 '11 at 19:42
That's true if users can execute arbitrary queries, but I'm assuming that's not the case, else he's just writing a database browser. Performance could be a problem depending on concurrent usage. I hadn't thought of that. – Ryan Stewart Aug 23 '11 at 19:55
@Ryan: that's why I asked the OP why he wanted to do that. I don't knwo why it would be useful if he doesn't plan to let the user execute arbitrary queries. It seems to be the case, since he answered that he want to ask the user to confirm he really wants to execute the query. – JB Nizet Aug 23 '11 at 20:04
1  
This is VERY BAD PRACTICE! Never ask for user input in a transaction. An open transaction after a DML statement will keep a lock on tables and indexes and may block other processes completely. Worst case, you can actually take down your whole database, needing to close all connection or maybe even reboot the lot. Just don't! transactions should be left open as short as possible. You won't want to wait for a user who maybe is just getting a cup of coffee. – GolezTrol Aug 23 '11 at 20:20
show 6 more comments

Don't check the query. Instead, make sure the query is run under user credentials that are not allowed to modify the database. You can create multiple users and grant each limited rights. This application should connect using the user that can only select data.

The exact way (and if this is possible at all) depends on the database you use, but I think every modern DBMS supports this.

You could execute the query, catch the exception that you'll probably get when the user has insufficient rights, and after confirmation you can connect using a different user. This way you leave it all to the database and its rights management, which it much more secure and less error prone than parsing the queries yourself.

share|improve this answer
I asked what I asked. Thank you, I know about different roles and assigning user to them. But it's not the question. – damluar Aug 23 '11 at 19:20
Rather than answering your question, I thought I'd provide you with a solution for your problem. I've made a little addition that might be helpful, but if you rather parse your queries yourself, please go ahead. But you'll need to have quite some knowledge of SQL to do this right. A select query does not necessarily start with select, and delete and insert statements can contain a select as well. And those are only the common exceptions... – GolezTrol Aug 23 '11 at 19:23
Thank you, I supposed that only way is to parse. But hoped that it's not. – damluar Aug 23 '11 at 19:29
You guys aren't answering his question as given. @damluar: check my answer – Ryan Stewart Aug 23 '11 at 19:30
@Ryan. And yes, you do answer the question but following your answer might kill his database. – GolezTrol Aug 23 '11 at 20:21
show 1 more comment

I suggest doing this with MySQL permissions. Have two users, one with read only access and with read/write.

  1. Execute the query with read only user
  2. Check for SQLException and if one is thrown then show your message if they really want to write
  3. Then use the second user.

This I think is the safest way because you are pushing the permission on the database. Otherwise you would have to have a sophisticated sql parser which could be difficult.

share|improve this answer

Depends. An UPDATE or DELETE might change the DB. If you want to know whether it might change the database, a case-insensitive search for the INSERT, UPDATE, DELETE, or ALTER keywords will tell you there's a possibility of the query changing the database. Although there's nothing preventing something like SELECT * FROM sometable WHERE something = 'update', so watch out for that.

If you want to know whether a change will actually be made, before running the query, you're going to have to know something about the data already in the database. Do a SELECT using the same WHERE clause as the potentially data-altering UPDATE or DELETE statement, and compare the data, for example (this could get messy for queries that use JOIN or other more advanced features of SQL). An easier way would be to use transactions to make the change, check for change, and then roll back the transaction, undoing the changes.

If you want to prevent changes, as other answers suggest you should make use of your DBMS's role-management, and don't grant permission to execute altering queries to the user or role running these queries.

share|improve this answer
Thanks, good thoughts – damluar Aug 23 '11 at 20:02

I'm not a JDBC expert, but I had seen this and could be helpful to you:

http://www.techfeed.net/blog/index.cfm/2006/4/20/Obtaining-Affected-rows-from-SQL-Query

It gives some techniques for retrieving the number of rows affected by INSERT/UPDATE/DELETE statements. Of course, that isn't of much help for CREATE/DROP TABLE, etc. But it's a start.

share|improve this answer
Ah, just saw that you want to intercept the statement before it executes. Never mind, then! (these would work AFTER executing). – Jaime de los Hoyos M. Aug 23 '11 at 19:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.