comon_orm_postgresql 0.0.1-alpha.1
comon_orm_postgresql: ^0.0.1-alpha.1 copied to clipboard
PostgreSQL adapter for comon_orm with runtime queries, migrations, and schema introspection.
example/main.dart
import 'generated/comon_orm_client.dart';
Future<void> main() async {
final client = await GeneratedComonOrmClientPostgresql.open();
try {
final user = await client.user.create(
data: const UserCreateInput(email: 'alice@example.com', name: 'Alice'),
);
print('created: ${user.email}');
} finally {
await client.close();
}
}