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

We are using sqlite056.jar in our code. While inserting into database in batch we are getting exception on line when we going to commit.

Lines of Code

<object of Connection>.commit();
<object of Connection>.setAutoCommit(true);

Exception

java.sql.SQLException: database locked
share|improve this question

3 Answers

Reading an SQLite database sets the locking state to Shared. Multiple readers can be active at the same time.

Writing to an SQLite database sets the locking state to Exclusive. No other processes can be active at that time.

You can find a detailed explanation on http://www.sqlite.org/lockingv3.html

share|improve this answer
I had the same error when running an applet (that accessed a sqlite db) with appletviewer. But only when running under a 64bit jvm. Switching to a 32bit jvm worked fine (windows). Probably the 64bit driver was not compiled into the jar. – dgorissen Aug 31 '11 at 15:52

Connection needs to be closed after each query. If any of the connections still persist. I had got the same error on Java desktop apps, now solved.

share|improve this answer

It seems that more than process is trying to modify the database. You can have only connection open at any given time. More background of the problem may help us provided you with a more concrete answer.

share|improve this answer
can we work with multiple tables of database at same time with same connection object of database suppose i have inserted value in table 1 and at same time also inserted value in table 2 of data base with same object of data base connection. – rajkumari Apr 6 '10 at 10:05
or is database locked exception occurred due to obj Connection.commit() line – rajkumari Apr 7 '10 at 6:06

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.