idb_shim 1.10.3 copy "idb_shim: ^1.10.3" to clipboard
idb_shim: ^1.10.3 copied to clipboard

outdated

indexed_db dart base interface with implementation for native (browser), file (io) and in memory.

example/example.dart

import 'package:idb_shim/idb.dart';
import 'package:idb_shim/idb_io.dart';

void main() async {
  final idbFactory = getIdbFactoryPersistent('test/tmp/out');

  // define the store name
  final storeName = 'records';

  // open the database
  final db = await idbFactory.open('my_records.db', version: 1,
      onUpgradeNeeded: (VersionChangeEvent event) {
    final db = event.database;
    // create the store
    db.createObjectStore(storeName, autoIncrement: true);
  });

  // put some data
  var txn = db.transaction(storeName, idbModeReadWrite);
  var store = txn.objectStore(storeName);
  var key = await store.put({'some': 'data'});
  await txn.completed;

  // read some data
  txn = db.transaction(storeName, idbModeReadOnly);
  store = txn.objectStore(storeName);
  final value = await store.getObject(key) as Map;
  await txn.completed;

  print(value);
}
26
likes
0
pub points
93%
popularity

Publisher

verified publishertekartik.com

indexed_db dart base interface with implementation for native (browser), file (io) and in memory.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

collection, js, path, sembast

More

Packages that depend on idb_shim