Open GoogleCodeExporter opened 9 years ago
Original comment by sergey.s...@gmail.com
on 9 Dec 2010 at 10:58
Fixed it by manually adding the antlr-runtime-3.1.3.jar that comes in the
SQLJet OSGi bundle as an external JAR.
Original comment by augusto...@gmail.com
on 9 Dec 2010 at 11:50
I'm not expert in OSGi, so if you could tell something about improving our
bundle's packaging, please, don't hesitate. Thanks.
Original comment by sergey.s...@gmail.com
on 9 Dec 2010 at 11:58
Is it compulsory to add antlr-runtime-3.1.3.jar, however I thought that this is
a "Pure Java" SQLite. Why this dependency is needed for a single
org/antlr/runtime/RecognitionException exception, can't it be replaced with
SqlJetException?
Original comment by ahmetalp...@gmail.com
on 19 Feb 2011 at 11:07
The 'antlr-runtime-3.1.3.jar' is required not only for 'RecognitionException'.
All parsing of SQL statements is implemented using ANTLR library. At now SQL is
parsed for database schema definitions. You could look to classes
'org.tmatesoft.sqljet.core.internal.lang.SqlLexer' or
'org.tmatesoft.sqljet.core.internal.lang.SqlParser' which are generated by
ANTLR in build time and inherit from 'org.antlr.runtime.Lexer' and
'org.antlr.runtime.Parser' classes.
Original comment by sergey.s...@gmail.com
on 19 Feb 2011 at 11:30
Issue 167 has been merged into this issue.
Original comment by sergey.s...@gmail.com
on 9 Apr 2012 at 5:59
Original issue reported on code.google.com by
augusto...@gmail.com
on 9 Dec 2010 at 11:19