SQLite Forum

Fast way to insert rows in SQLite
Login
Here's the DDL from the OP's Rust code linked above:
```
        "CREATE TABLE IF NOT EXISTS user (
                id INTEGER not null primary key,
                area CHAR(6),
                age INTEGER not null,
                active INTEGER not null)",
```