DbSchema is connecting to MongoDb using JDBC Drivers.
What are JDBC Drivers?
JDBC drivers are Java library files with the extension '.jar', used by Java applications to connect to the database.
Usually they are provided by the same company which developed the database software.
DbSchema is an MongoDb Client which already includes
the MongoDb JDBC driver. DbSchema can configure the MongoDb JDBC URL and test the connectivity.
What is the JDBC URL?
The URL is a string (text) with a specific format containing information about the host where the database is running, the port, username, database name, etc.
The URL format is specific to each driver.
Any wrong character in the URL may make the database connectivity fail.
Therefore we recommend installing DbSchema and try to get connected, and you will find the JDBC URL in the connection dialog.
Open-Source MongoDb JDBC Driver
We open source our JDBC driver for MongoDb. DbSchema features for MongoDb are described here.
The driver source code is accessible on GitHub.
The driver binaries can be downloaded as zip file, which you should uncompress.
Download JDBC Driver
Download the zip, unpack and include the jar files in your classpath. The driver is compatible with Java 11.
for any issues with the driver, you can write to us.
For accessing the driver source code please visit the GitHub repository:
Driver Source Code
The driver is written on top of the native MongoDb Java driver.
The driver URL is the same as in the MongoDb documentation.
Example :
mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]]
The URL allows connecting to multiple databases. In DbSchema you can set this by choosing 'Custom URL' in the connection editor and entering the URL as string.
For URL details check the MongoDb documentation.
MongoDb Atlas
Create an account by MongoDb Atlas and login. There you have an option to connect which will provide the URI.
In the DbSchema Connection Dialog use manual URL configuration.
On the same connection page you have also a link to change a user password in the database.