data_db 0.0.3

SDKdartflutter
Platformandroidioswindowslinuxmacosweb

A data library. Provide classes and utilities for better manipulation of data coming from an SQL database.

A library to abstract data from databases in a Dataset.

Usage

A simple usage example:

import 'package:data_db/data_db.dart';

main() {
  var dataset = Dataset();
  dataset.structure.addAll({'id': IntegerDataField});
  dataset.newRecord();
  dataset.trySetValue('id', 1);
}

Features and bugs

Please file feature requests and bugs at the issue tracker.