entao_sql 0.1.2 copy "entao_sql: ^0.1.2" to clipboard
entao_sql: ^0.1.2 copied to clipboard

SQLite and PostgreSQL.

example/entao_sql_example.dart

import 'dart:async';

import 'package:println/println.dart';

void main() async {
  Stream<int> s = Stream.fromIterable([1, 2, 3]);
  println("multi? ", s.isBroadcast);
  s.length.then((n) {
    println("length: ", n);
  });
  s.last.then((v){
    println("last: ",v);
  });
  s.listen((v) {
    println("value: ", v);
  });
}

Future<void> hello() async {
  println("hello async ");
}

void blank() {
  println("hello");
}
0
likes
120
points
216
downloads

Publisher

unverified uploader

Weekly Downloads

SQLite and PostgreSQL.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

entao_dutil, entao_lint, entao_log, mysql_client_plus, postgres, println, sqlite3

More

Packages that depend on entao_sql