Skip to content

Database‐Drivers

joravar edited this page Aug 17, 2026 · 1 revision

Database Driver Reference

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.


1. PostgreSQL

  • Default Port: 5432
  • URI Format: postgres://user:password@localhost:5432/dbname
  • SSL Modes: Supported (disable, require, prefer).

2. MySQL / MariaDB

  • Default Port: 3306
  • URI Format: mysql://user:password@localhost:3306/dbname
  • Authentication: Supports native password and caching_sha2_password.

3. MongoDB

  • Default Port: 27017
  • URI Format: mongodb://user:password@localhost:27017/dbname
  • Atlas URI: mongodb+srv://user:password@cluster.mongodb.net/dbname

4. SQLite

  • Driver: sql.js (WebAssembly-compiled SQLite engine).
  • Usage: Open local .db or .sqlite files directly from disk without running a local database service.

Clone this wiki locally