sqflitecon 1.1.0 copy "sqflitecon: ^1.1.0" to clipboard
sqflitecon: ^1.1.0 copied to clipboard

An interface for manage sqflite connections.

sqflitecon #

pub-web.flutter-io.cn

An interface for manage sqflite connections.

Usage #

Setting up #

  1. Make sure you are using flutter_dotenv right.
  2. Include the DATABASE_PATH variable to your .env file with the path of your sqflite database.

Getting connection #

To get a connection instance you can use:

import 'package:sqflitecon/db.dart';

final connection = await DB.getConnetion();

Or just:

import 'package:sqflitecon/db.dart';

final connection = await databaseConnection();

In either case you can enter the same named parameters - like version, onConfigure - provided by sqflite (see here). An example below.

import 'package:sqflitecon/db.dart';

final connection = await databaseConnection(
    version: 1,
    onConfigure: onConfigure);
0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

An interface for manage sqflite connections.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, flutter_dotenv, sqflite

More

Packages that depend on sqflitecon