mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 02:50:46 -06:00
This adds support for table definitions with a signed default value,
like this:
CREATE TABLE test(
a int DEFAULT -1
);
To generate c++ code from the grammar(sqlit3.g) you need antlr 2.7.7. Download it from www.antlr2.org. Either put the antlr.jar into your system classpath or start it like this: java -cp .:/pathto/antlr.jar antlr.Tool sqlite3.g