Is there any problem in using multi-threaded software with SQLite?

3

Is there a problem with using multi-threaded software with an SQLite database? This bank will only have one connection, however the software that will access it is multi-threaded (application server). Is there a problem? Is the SQLite library capable of managing the commands for this connection?

    
asked by anonymous 27.04.2015 / 20:46

1 answer

1

Are there problems in using multi-threaded software with an SQLite database?

No. It pays to read this document explaining how to set up your bank to support multithreading . >

Is the SQLite library capable of managing the commands for this connection?

Yes. It all depends on the language your application is made of and the library you choose. Some examples:

28.04.2015 / 00:29