I have a Berkeley DB on a local folder and I'd like to connect to it via JDBC. Specifically via Zentus SqliteJDBC.
My problem is with the connection string ("url"). While a sqlite connection string might look like: "jdbc:sqlite:c:\\path\\to\\database.db"
, Berkeley DB does not have a single .db file to refer to. Instead, I see multiple .jdb files that make up the DB.
My questions is - What should my connection string look like?