I'm stumped on an SQLite issue. I have a database app that stores it's data on an SQLite database in a Network Drive. There are multiple users that use the software at one time. The issue is that sometimes different users end up writing to the database at the same time, which causes the database to lockup.
I've been reading that I can first check the database to see if it's busy by using SQLITE_BUSY before trying to write to it. The problem is that I don't have a clue on how I can include SQLITE_BUSY on my code. Can somebody please help me with a small code example?
I'm really thankful for all your help...
I've been reading that I can first check the database to see if it's busy by using SQLITE_BUSY before trying to write to it. The problem is that I don't have a clue on how I can include SQLITE_BUSY on my code. Can somebody please help me with a small code example?
I'm really thankful for all your help...