Re: [sqlite] Unsigned

2018-08-25 Thread D Burgess
The original question was that I was curious about the history. Noting where we are now at, I will give as examples of two real world applications: 1. 32 bit embedded sqlite. Realtime storing data from various hardware interfaces. The data includes unsigned 32 bit integers which are stored as

Re: [sqlite] Next release

2018-08-25 Thread Joe Mistachkin
Roger Schlueter wrote: > > What about System.Data.SQLite? > I would estimate that the next System.Data.SQLite release, which will include SQLite 3.25, will be released within two to three weeks after SQLite 3.25 itself is released, barring an unforeseen complications. -- Joe Mistachkin

Re: [sqlite] Next release

2018-08-25 Thread Roger Schlueter
What about System.Data.SQLite? On 8/25/2018 13:04, Richard Hipp wrote: On 8/25/18, R Smith wrote: A quick dev question: Any idea on the eta for the next release? My best guess at the moment is 4 or 5 weeks. ___ sqlite-users mailing list

Re: [sqlite] Next release

2018-08-25 Thread Richard Hipp
On 8/25/18, R Smith wrote: > A quick dev question: Any idea on the eta for the next release? My best guess at the moment is 4 or 5 weeks. -- D. Richard Hipp d...@sqlite.org ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org

[sqlite] Next release

2018-08-25 Thread R Smith
A quick dev question: Any idea on the eta for the next release? Reason for asking:  We're planning a DB tool release soon and can release omitting the Windowing functions, or if it's going to arrive soon, simply wait a bit and include it. This answer, even if vague, will help us make that

Re: [sqlite] minor documentation flaw

2018-08-25 Thread Richard Hipp
Thanks. The fix is checked in and will appear in the next release. On 8/25/18, Wolfgang Enzinger wrote: > > In https://sqlite.org/lang_expr.html, the anchor > > > > appears twice. Obviously the second occurence should be > > > > Wolfgang > > ___ >

Re: [sqlite] RBU conflicts with SQLITE_UNTESTABLE

2018-08-25 Thread Richard Hipp
On 8/25/18, Ralf Junker wrote: > I am aware that the use of SQLITE_UNTESTABLE is discouraged. Still I > want to point developers to the fact that SQLITE_UNTESTABLE breaks RBU. Thank you, Ralf. We are well aware of this. There are lots of similar situations, where omitting features from SQLite

[sqlite] minor documentation flaw

2018-08-25 Thread Wolfgang Enzinger
In https://sqlite.org/lang_expr.html, the anchor appears twice. Obviously the second occurence should be Wolfgang ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org

[sqlite] RBU conflicts with SQLITE_UNTESTABLE

2018-08-25 Thread Ralf Junker
I am aware that the use of SQLITE_UNTESTABLE is discouraged. Still I want to point developers to the fact that SQLITE_UNTESTABLE breaks RBU. In particular, RBU relies on SQLITE_TESTCTRL_IMPOSTER to be fully working. With SQLITE_UNTESTABLE defined, this is not the case. RBU functions return

Re: [sqlite] Unsigned

2018-08-25 Thread Darren Duncan
On 2018-08-24 11:58 PM, Thomas Kurz wrote: What is the value of a built-in UNSIGNED type when we already have INTEGER? I can't think of any. -- Darren Duncan Signed integers only allow half the range of values of unsigned ones. You cannot store a pointer value in them. (You can by casting to

Re: [sqlite] Unsigned

2018-08-25 Thread Thomas Kurz
> What is the value of a built-in UNSIGNED type when we already have INTEGER? > I can't think of any. -- Darren Duncan Signed integers only allow half the range of values of unsigned ones. You cannot store a pointer value in them. (You can by casting to signed, but then sorting is done