Files
sqlitebrowser/src/grammar
Martin Kleusberg e72df17bc3 grammar: Support signed default values
This adds support for table definitions with a signed default value,
like this:

CREATE TABLE test(
    a int DEFAULT -1
);
2017-04-29 13:49:00 +02:00
..
2017-02-17 13:41:43 +01:00

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