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?
|
|
One way:
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. |
|||||||||||||
|
|
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. |
|||||||||||
|
|
I suggest doing this with MySQL permissions. Have two users, one with read only access and with read/write.
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. |
|||
|
|
|
Depends. An 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 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. |
|||
|
|
|
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. |
|||
|
