Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 309 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 309 Bytes

Dart client for Tarantool Database

Implemented connection to db and insert/select queries.

Usage example

final client = new TarantoolClient(host, port);
await client.connect();
await client.insert(444, [44, "hello, world!"])
await client.select(444, 0, 10, 0, TarantoolIterator.all, [0]);