Re: [sqlite] Using SQLite without SQL.

2016-07-26 Thread Simon Slavin
On 26 Jul 2016, at 10:41pm, John Found wrote: > Well, not as a "demonstration", but for regular use. > I am writing all my software in assembly language, > so such aspiration is some kind of natural for me. :) > > Read my answer to DRH for more details on my motives. Okay. Understood. You'r

Re: [sqlite] Using SQLite without SQL.

2016-07-26 Thread John Found
On Tue, 26 Jul 2016 21:52:26 +0100 Simon Slavin wrote: > > On 26 Jul 2016, at 9:29pm, John Found wrote: > > > Is it possible to use SQLite, making queries directly in the internal > > virtual machine language, instead of SQL? > > > > Or in another variant, compile the queries in design time,

Re: [sqlite] Using SQLite without SQL.

2016-07-26 Thread John Found
On Tue, 26 Jul 2016 16:40:07 -0400 Richard Hipp wrote: > On 7/26/16, John Found wrote: > > Is it possible to use SQLite, making queries directly in the internal > > virtual machine language, instead of SQL? > > No. Why do you want to do this. The SQL language is the most > compelling feature

Re: [sqlite] Using SQLite without SQL.

2016-07-26 Thread Simon Slavin
On 26 Jul 2016, at 9:29pm, John Found wrote: > Is it possible to use SQLite, making queries directly in the internal virtual > machine language, instead of SQL? > > Or in another variant, compile the queries in design time, manually optimize > them (if needed) and then store and call in the p

Re: [sqlite] Using SQLite without SQL.

2016-07-26 Thread Richard Hipp
On 7/26/16, John Found wrote: > Is it possible to use SQLite, making queries directly in the internal > virtual machine language, instead of SQL? No. Why do you want to do this. The SQL language is the most compelling feature of SQLite. Why abandon it? > > Or in another variant, compile the