Closed
Description
The SQL dialect of the database is different, like when you use CREATE TABLE
, if you use SQLite, maybe you don't want to use the crowd, you can write SQL like this
CREATE TABLE test ( a TEXT )WITHOUT ROWID;
,
but MySQL or PostgresSQL don't support that, if you use MySQL, you can choose the storage engine like
CREATE TABLE test( a varchar(100) ) ENGINE=InnoDB;
.
So, we can add features like cargo build --features "sqlite"
that will support SQLite grammars.
Metadata
Metadata
Assignees
Labels
No labels