Re: [sqlite] Whish List for 2015

2014-12-23 Thread Philip Warner
Native UNICODE? Dates? UUID (stored as bytes, displayed as string)? I know...new data type representations are unlikely. Triggers with declared variables that are preserved across invocations? (...using temp tables is a pita for storing, say, 5 numbers)

[sqlite] SQLite Android Bindings: how difficult to add LOCALIZED back?

2015-01-07 Thread Philip Warner
I just saw the SQLite Android Bindings page at http://www.sqlite.org/android/doc/trunk/www/index.wiki but was a little disappointed to read in the details that UNICODE and LOCALIZED are not supported. I'd really like the latest SQLite, and LOCALIZED. How difficult would it be to add

Re: [sqlite] SQLite Android Bindings: how difficult to add LOCALIZED back?

2015-01-11 Thread Philip Warner
On 9/01/2015 5:00 PM, Dan Kennedy wrote: On 01/08/2015 07:48 AM, Philip Warner wrote: How difficult would it be to add LOCALIZED collation support? I'm guessing that the fact it's not there means it's non-trivial, but I was hoping otherwise... The stumbling block is that the Android

[sqlite] Odd results with ICU extensions?

2015-04-14 Thread Philip Warner
I've been using SqlCipher (built locally with ICU extensions) and can do the following: sqlite> select icu_load_collation('[][][]','q'); sqlite> select * from foo order by f1 collate q; Which worries me. I assume this is an Sqlite+ICU problem. Does anyone have any insights into what is going

[sqlite] Odd results with ICU extensions?

2015-04-29 Thread Philip Warner
Just came back to check on this, but there were no replies. Is there a better contact for the ICU extensions? On 14/04/2015 2:43 PM, Philip Warner wrote: > I've been using SqlCipher (built locally with ICU extensions) and can do the > following: > > sqlite> select icu

[sqlite] factbook.sql World Factbook Country Profiles in SQL (Incl. factbook.db - Single-File SQLite Distro)

2015-11-02 Thread Philip Warner
On 2/11/2015 1:49 AM, Gerald Bauer wrote: >I've started a new project, that is, /factbook.sql [1] that offers > an SQL schema for the World Factbook and also includes a pre-built > single-file SQLite database, that is, factbook.db [2] for download. Have you seen the XML/mysql versoin:

[sqlite] sqlite3.exe and formatting binary (GUID) data

2009-05-24 Thread Philip Warner
way (or just a hack) that I could persuade the shell to output GUIDs (or all binary data) in the same format as for .dump? Thanks, Philip Warner P.S. Of course even better would be the ability to read/write GUIDs as properly formatted strings! (Note: I am not asking that they be treated

Re: [sqlite] sqlite3.exe and formatting binary (GUID) data

2009-05-25 Thread Philip Warner
John Machin wrote: > Assuming your guid is a BLOB, then >SELECT other_stuff, QUOTE(guid), etc > will display it as hex e.g. X'01020304' > This is great; now I can see them at least! >> P.S. Of course even better would be the ability to read/write GUIDs as >> properly formatted strings!

Re: [sqlite] A question about the ancient history of SQLite triggers

2013-03-05 Thread Philip Warner
On 5/03/2013 9:53 PM, Richard Hipp wrote: > Recursive triggers (triggers that invoke themselves either directly or > indirectly) were added in version 3.6.18, 2009-09-11. These are not strictly recursive; the 'when' clause means that trigger 1 will cause trigger 2 to be called etc.

Re: [sqlite] A question about the ancient history of SQLite triggers

2013-03-06 Thread Philip Warner
On 6/03/2013 1:59 AM, Jay A. Kreibich wrote: > In this case, it is any trigger that invokes any other trigger. > Prior to 3.6.18 there was no trigger "stack" and triggers could be > only one layer deep. Ah, thanks. That solves the problem. I can dynamically generate a single inefficient

Re: [sqlite] How difficult for bindings to support API 14 or below?

2017-04-20 Thread Philip Warner
On 21/04/2017 1:43 AM, Dan Kennedy wrote: Are you fossil-literate? Primarily git literate (cvs years ago). Happy to work my way through it. ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org

Re: [sqlite] How difficult for bindings to support API 14 or below?

2017-04-21 Thread Philip Warner
Have sent a patch file direct to you (Dan). On 21/04/2017 1:43 AM, Dan Kennedy wrote: Sure, that sounds great! I don't think there are any license issues, as all that code inherits the Apache 2.0 license from Android. Are you fossil-literate? ___

Re: [sqlite] How difficult for bindings to support API 14 or below?

2017-04-20 Thread Philip Warner
in terms of number of devices that are live. If I tidy up the code, do you have any interest in incorporating it, perhaps as another branch? On 20/04/2017 3:38 AM, Dan Kennedy wrote: On 04/19/2017 06:28 PM, Philip Warner wrote: FWIW, it compiles and builds with API set to 14...I'm just worried

[sqlite] How difficult for bindings to support API 14 or below?

2017-04-18 Thread Philip Warner
I notice that the Android bindings support API 16 by default, with a custom branch for API 15. Naively, it looks like API 15 support has a small number of changes relating to a missing/changed(?) exception. Can anyone offer insight into how difficult it would be to support API 14 or below? It

Re: [sqlite] Is it possible to create the Stored Procedure (SP) in Sqlite?

2017-04-19 Thread Philip Warner
There is another reason to have stored procedures: encapsulating logic across apps/clients. A great deal can be done in triggers, but not much in terms of queries or complex parameterized updates. It would be great, imo, if triggers could have durable local storage (ie. variables) and if

Re: [sqlite] How difficult for bindings to support API 14 or below?

2017-04-19 Thread Philip Warner
FWIW, it compiles and builds with API set to 14...I'm just worried I'll get some esoteric breakage. Any insights from someone who understands NDK/API level interactions? On 18/04/2017 11:49 PM, Philip Warner wrote: I notice that the Android bindings support API 16 by default, with a custom

Re: [sqlite] SQLiteDiskIOException: disk I/O error (code 1034)

2017-05-10 Thread Philip Warner
Interesting idea; when I've finished diagnosing my current problem, it might be worth expanding the repertoire of the Android library. I presume that the sqlite logging function could be used to get the message at least, is that correct? IIRC, it's called on an error and the OS file-related

[sqlite] SQLiteDiskIOException: disk I/O error (code 1034)

2017-05-06 Thread Philip Warner
I have an Android app that does work in the database every five minutes (at least). Every few days I am seeing: org.sqlite.database.sqlite.SQLiteDiskIOException: disk I/O error (code 1034) Code 1034 is SQLITE_IOERR_FSYNC. This is using a custom build of the Sqlite bindings but I should

Re: [sqlite] SQLiteDiskIOException: disk I/O error (code 1034)

2017-05-06 Thread Philip Warner
Not full, several gb free. Will turn on logging and hope it plays well with Android. Is it likely to be a threading issue? If so, will the logging show other accesses to the file? On 7 May 2017 2:13:28 am AEST, Dan Kennedy <danielk1...@gmail.com> wrote: >On 05/06/2017 02:13 PM, Phil

Re: [sqlite] Regarding CoC

2018-10-22 Thread Philip Warner
I'm guessing this is an appropriately satirical response to a ridiculous request from corporates. If not, then: - ditch all the religious mumbo-jumbo: 1, 10, 21, 41, 42, 44, 45, 46, 49, 50, 58, 60, 61, 62, 63, 70, 72 - and probably the masochism: 11 - and probably "Do not swear, for fear of

Re: [sqlite] Regarding CoC

2018-10-24 Thread Philip Warner
On 25/10/2018 9:11 AM, Richard Hipp wrote: If you read the original CoC closely, you will find things that required me to change it. We have: 18. Be a help in times of trouble 19. Console the sorrowing 31. Love your enemies 34. Be not proud 71. Make peace with your adversary

Re: [sqlite] Regarding CoC

2018-10-24 Thread Philip Warner
On 25/10/2018 2:17 AM, Jens Alfke wrote: Vague blanket statements like “Don’t be evil” or “Be excellent to each other” don’t work (here or anywhere else.) This is a good point. But it leads to the question: have you ever seen one that works better than, say, "Don't be an

Re: [sqlite] Regarding CoC

2018-10-25 Thread Philip Warner
On 25/10/2018 11:06 AM, Simon Slavin wrote: The second exhortation tells us that that's not enough, and we also have a duty to maximise pleasure. lol, good point. Quite the opposite of monkish orders. ___ sqlite-users mailing list

Re: [sqlite] Regarding CoC

2018-10-26 Thread Philip Warner
On 26/10/2018 11:02 PM, Gary R. Schmidt wrote: On 26/10/2018 14:12, Philip Warner wrote: I agree with the humour. As a satirical statement on the horrors of building a good CoC/CoE it is quite effective. But...if it is a CoC/E, then I think it would be beneficial to have one that many

Re: [sqlite] Regarding CoC

2018-10-25 Thread Philip Warner
On 25/10/2018 9:59 PM, Mike King wrote: I’m a good atheist but I love the CoC. Not bothered by the religious bits but I get the sentiment. I guess it appeals to my British sense of irony and odd sense of humour :) I agree with the humour. As a satirical statement on the horrors of building a

Re: [sqlite] Failure to rename table in 3.25 and 3.26

2018-12-07 Thread Philip Warner
Cool! Thanks, glad it was not my problem, and glad it was fixed so fast. On 6/12/2018 12:50 AM, Dan Kennedy wrote: On 12/03/2018 10:37 AM, Philip Warner wrote: Tables with complex triggers (possibly limited to "Insert...With", though that is not clear), fail with &quo

[sqlite] Failure to rename table in 3.25 and 3.26

2018-12-02 Thread Philip Warner
Tables with complex triggers (possibly limited to "Insert...With", though that is not clear), fail with "no such table". The following produces the error in 3.26; a much simpler trigger does not produce the error. |Create Table LOG_ENTRY(|| ||    LOG_ENTRY_ID int primary key,|| ||