to_sqlite 0.1.2 to_sqlite: ^0.1.2 copied to clipboard
A simple and efficient package to convert CSV files into SQLite databases. `to_sqlite` streamlines the process of generating SQLite tables and inserting bulk data, allowing you to manage large dataset [...]
example/to_sqlite_example.dart
import 'dart:async';
import 'package:to_sqlite/src/cli_client.dart';
Future<void> main() async {
const arg = ['generate_db', '-c', 'assets/config.json'];
await CLIClient.shared.execute(arg);
}