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
140
points
27
downloads

Documentation

API reference

Publisher

verified publishercals.xyz

Weekly Downloads

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

Homepage

License

MIT (license)

Dependencies

mysql1

More

Packages that depend on laconic