angel3_orm_postgres 3.0.0 copy "angel3_orm_postgres: ^3.0.0" to clipboard
angel3_orm_postgres: ^3.0.0 copied to clipboard

outdated

PostgreSQL support for Angel3 ORM. Includes functionality for querying and transactions.

example/main.dart

import 'dart:io';
import 'package:angel3_orm_postgres/angel3_orm_postgres.dart';
import 'package:postgres/postgres.dart';

void main() async {
  var executor = PostgreSqlExecutorPool(Platform.numberOfProcessors, () {
    return PostgreSQLConnection('localhost', 5432, 'orm_test',
        username: 'test', password: 'test123');
  });

  var rows = await executor.query('users', 'SELECT * FROM users', {});
  print(rows);
}
4
likes
0
pub points
66%
popularity

Publisher

verified publisherdukefirehawk.com

PostgreSQL support for Angel3 ORM. Includes functionality for querying and transactions.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

angel3_orm, logging, pool, postgres

More

Packages that depend on angel3_orm_postgres