PHORM PostgreSQL 🚀
Warning
🚧 This package is under active development and is not yet functional. The API is unstable and subject to change. Do not use in production.
A PostgreSQL driver for the PHORM ORM — a lightweight, type-safe, driver-agnostic ORM for Dart and Flutter.
Roadmap
PostgreSQL dialect (SqlDialectimplementation)Connection pool managementAsync query executorMigration supportFlutter & Dart server support
Usage (planned)
import 'package:phorm_postgres/phorm_postgres.dart';
final db = PhormPostgresDatabase(
host: 'localhost',
port: 5432,
database: 'mydb',
username: 'postgres',
password: 'secret',
tables: [usersTable],
);
final users = PhormCore<User>(dbManager: db, table: usersTable);
await users.insert(user);
Related packages
| Package | Description |
|---|---|
| phorm_sqlite | ✅ Stable SQLite driver |
| phorm | Core engine (included automatically) |
License
MIT © 2024–2026 PHORM Contributors
Libraries
- phorm_postgres
- PHORM PostgreSQL driver.