sqlentity 2.1.3 copy "sqlentity: ^2.1.3" to clipboard
sqlentity: ^2.1.3 copied to clipboard

SQLite DataBase, performs the creation of the database, manages activity control, and all the benefits of an ORM.

Use this package as a library

Depend on it

Run this command:

With Flutter:

 $ flutter pub add sqlentity

This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):

dependencies:
  sqlentity: ^2.1.3

Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.

Import it

Now in your Dart code, you can use:

import 'package:sqlentity/database/database-base.dart';
import 'package:sqlentity/database/database-config.dart';
import 'package:sqlentity/database/abstract-database.dart';
import 'package:sqlentity/repository/repository.dart';
import 'package:sqlentity/repository/dao-repository/dao-repository.dart';
import 'package:sqlentity/repository/dao-repository/i-dao-repository.dart';
import 'package:sqlentity/base-entity/column.dart';
import 'package:sqlentity/base-entity/entity.dart';
import 'package:sqlentity/dao/i-dao.dart';
import 'package:sqlentity/dao/dao.dart';
3
likes
30
pub points
12%
popularity

Publisher

unverified uploader

SQLite DataBase, performs the creation of the database, manages activity control, and all the benefits of an ORM.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, path, sqflite

More

Packages that depend on sqlentity