static_orm_generator 0.1.5 static_orm_generator: ^0.1.5 copied to clipboard
A generator of static_orm. With this, Perform inserts, updates, selects and delets operations.
A library to generate static_orm automatically.
Usage #
A simple usage example:
import 'package:static_orm_generator/static_orm_generator.dart';
import 'package:static_postgres_orm/static_postgres_orm.dart';
void main() {
var connection = PostgreSQLConnection('localhost', 5432, 'db_teste',
username: 'postgres', password: '1234');
generate_pg_orm(connection);
}
Define a path to generated files
import 'package:static_orm_generator/static_orm_generator.dart';
import 'package:static_postgres_orm/static_postgres_orm.dart';
void main() {
var connection = PostgreSQLConnection('localhost', 5432, 'db_teste',
username: 'postgres', password: '1234');
generate_pg_orm(connection, path: 'orm');
}
Omiting schema name in FileNames and ClassNames
import 'package:static_orm_generator/static_orm_generator.dart';
import 'package:static_postgres_orm/static_postgres_orm.dart';
void main() {
var connection = PostgreSQLConnection('localhost', 5432, 'db_teste',
username: 'postgres', password: '1234');
generate_pg_orm(connection, schemaInName: false);
}
Features and bugs #
Please file feature requests and bugs at the issue tracker.