laconic 0.0.1 copy "laconic: ^0.0.1" to clipboard
laconic: ^0.0.1 copied to clipboard

A laravel like sql query builder for mysql designed to be flexible, portable and easy to use.

laconic #

A laravel like sql query builder for mysql designed to be flexible, portable and easy to use.

Features #

This is a dart library inspired by laravel's query builder and has some alike interface to handle database.

Getting started #

flutter pub add laconic

Usage #

import 'package:laconic/laconic.dart';

void main() async {
  final db = DB(
    host: 'host',
    port: 3306,
    database: 'your database',
    username: 'username',
    password: 'password',
  );
  await db.table('example_table).where('id', 1).sole();
}

Additional information #

This library is still [WIP], api may have break changes in the future. Use this at your own risk if you decide to use in your product environment.

1
likes
120
pub points
1%
popularity

Publisher

verified publishercals.xyz

A laravel like sql query builder for mysql designed to be flexible, portable and easy to use.

Homepage

Documentation

API reference

License

MIT (LICENSE)

Dependencies

mysql1

More

Packages that depend on laconic