postgres_conector 1.0.0-dev.1
postgres_conector: ^1.0.0-dev.1 copied to clipboard
A library for connecting to and querying PostgreSQL databases.
example/postgres_conector_example.dart
import 'package:postgres_conector/postgres_conector.dart';
void main() async {
final _connection = PostgresqlDao(
host: '127.0.0.1',
port: 5432,
database: 'postgres',
username: 'postgres',
password: 'postgres',
);
await _connection.connect();
}