Re: [sqlite] SQLite Bytecode

2017-11-16 Thread Richard Hipp
On 11/15/17, aUser wrote: > Is it possible (and useful), to generate SQLite bytecode instead of a SQL > statement? It is neither possible nor useful. The bytecode changes from one release to the next - it is not stable. We treasure this design freedom and will not yield it. In

Re: [sqlite] SQLite Bytecode

2017-11-16 Thread Richard Hipp
On 11/15/17, aUser wrote: > Hello > > I developed an application-specific query language. Currently, I am > converting a query to a rather difficult SQL statement. > > Is it possible (and useful), to generate SQLite bytecode instead of a SQL > statement? > If yes, could someone

[sqlite] SQLite Bytecode

2017-11-16 Thread aUser
Hello I developed an application-specific query language. Currently, I am converting a query to a rather difficult SQL statement. Is it possible (and useful), to generate SQLite bytecode instead of a SQL statement? If yes, could someone share some C code as an example, how it could be done?