static_orm_generator 0.1.2 copy "static_orm_generator: ^0.1.2" to clipboard
static_orm_generator: ^0.1.2 copied to clipboard

outdated

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.

0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A generator of static_orm. With this, Perform inserts, updates, selects and delets operations.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

data_db, file_utils, postgres, static_postgres_orm, strings

More

Packages that depend on static_orm_generator