-
-
Notifications
You must be signed in to change notification settings - Fork 0
Database‐Drivers
joravar edited this page Aug 17, 2026
·
1 revision
Bapu Studio ships with pre-bundled pure-JS drivers for PostgreSQL, MySQL, MongoDB, and SQLite so you don't need to install external JDBC drivers or background server daemons.
-
Default Port:
5432 -
URI Format:
postgres://user:password@localhost:5432/dbname -
SSL Modes: Supported (
disable,require,prefer).
-
Default Port:
3306 -
URI Format:
mysql://user:password@localhost:3306/dbname -
Authentication: Supports native password and
caching_sha2_password.
-
Default Port:
27017 -
URI Format:
mongodb://user:password@localhost:27017/dbname -
Atlas URI:
mongodb+srv://user:password@cluster.mongodb.net/dbname
-
Driver:
sql.js(WebAssembly-compiled SQLite engine). -
Usage: Open local
.dbor.sqlitefiles directly from disk without running a local database service.