I am connecting with SQlite using JDBC driver. I want to check from SQLite command prompt how many connections are open within the database engine. Can any one tell me how I can do it?
|
|
SQLite is an embedded database - each process that accesses a database file essentially has its own DB engine. The only interaction between the separate engines is through the file locking facilities of the underlying operating system, which make sure that the various processes won't step on each other when trying to update the DB file. Due to this design, there is no single control point as far SQLite is concerned. The Therefore, the If you want to know what your application is doing with the underlying DB, you will have to find/write a wrapper around the base SQLite3 library that will perform any additional book-keeping that you need - possibly providing a control interface. The base SQLite library itself does not have any such facilities since they are considered to be outside of its scope. The problem with the wrapper approach is that your application would still not know what any other process is doing. You might be able to have all processes that use the wrapper collect their data at a central access point (file/network service/...), but that's about it - any other process (e.g. the If you only need to know the number of "connections" to a DB file, however, there might be a (definitely non-portable) way: each "connection" results in the DB file being opened, therefore you might be able to use a platform-specific utility to find out which processes have opened the file at each moment. On Linux, for example, you could use the By the way, if you are opening the same DB file multiple times from a single instance of your application, you might want to rethink your architecture - contrary to traditional DB servers, opening multiple "connections" to a single SQLite DB file has no performance advantage and might even cause your application to deadlock if you are not careful. |
|||
|
|
|
There is no API to do that in the PS: of course this will only count the number of connections in underlying running JVM instance |
|||
|