RE: [sqlite] Sharing an in-memory database between applications

2007-07-17 Thread Lodewijk Duymaer van Twist
Hi Rob, This maybe a dumb idea but have you tried a software RAM disk? Or maybe even a physical RAM disk. http://www.tomshardware.com/2005/09/07/can_gigabyte/index.html Kind Regards, Lodewijk -Original Message- From: Rob Richardson [mailto:[EMAIL PROTECTED] Sent: Friday, July 13,

RE: [sqlite] mailing list slow?

2007-07-18 Thread Lodewijk Duymaer van Twist
Same here -Original Message- From: Joe Wilson [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 18, 2007 6:01 PM To: sqlite-users@sqlite.org Subject: [sqlite] mailing list slow? I noticed delays of an hour or so in posts hitting the mailing list recently. Or is it just my mail server?

RE: [sqlite] mailing list slow?

2007-07-18 Thread Lodewijk Duymaer van Twist
I think that any e-mail should be delivered within a few seconds in this day and age. Also real time mailing should improve discussions on the mailing list. Just an opinion. Kind regards, Lodewijk -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday,

Re: [sqlite] SQLite version 3.5.6

2008-02-06 Thread Lodewijk Duymaer van Twist
Hello Richard, I think http://www.sqlite.org/cvstrac/wiki?p=ToDo is due for an update. Kind regards Lodewijk -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, February 06, 2008 6:06 PM To: sqlite-users@sqlite.org;

[sqlite] Well-Known Users of SQLite

2008-02-12 Thread Lodewijk Duymaer van Twist
Hi All, I was just invited to use LiveStation (http://www.livestation.com/), the LiveStation player installs sqlite3.dll. This might be why Microsoft developers are seen in the sqlite mailing list. http://www.livestation.com/news/18-livestation_showcased_at_microsoft_innova tion_day Kind

RE: [sqlite] Database locked. Any idea ?

2006-06-20 Thread Lodewijk Duymaer van Twist
Hi, I don't know if I can help you with your problem, but I'm interested in what you are trying to do, are u using uCos on a Z-World based system? Kind regards, Lodewijk Duymaer van Twist

RE: [sqlite] Re: R: Re: [sqlite] How to compile sqlite3 C sample code

2006-08-28 Thread Lodewijk Duymaer van Twist
Hi, How about downloading the sample code from www.apress.com http://www.apress.com/book/supplementDownload.html?bID=10130=3537 Nice book, try getting it. Kind regards, Lodewijk -Original Message- From: Tikky [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 2:18 AM To:

[sqlite] How to create a queue using Sqlite

2006-02-02 Thread Lodewijk Duymaer van Twist
-in application. Is this possible without polling the content of this queue table. Kind regards, Lodewijk Duymaer van Twist

RE: [sqlite] How to create a queue using Sqlite

2006-02-07 Thread Lodewijk Duymaer van Twist
2006, Lodewijk Duymaer van Twist wrote: >Hi, > > > >I would like to create some sort of queue using sqlite. I'm thinking about >transmitting commands to hardware devices/managers using a queue table. > >Is it possible to trigger a function created with sqlite3_create_func

[sqlite] WAKEUP !!! SOMEBODY IS DESTROYING THE WIKI PAGES

2006-03-30 Thread Lodewijk Duymaer van Twist

RE: [sqlite] WAKEUP !!! SOMEBODY IS DESTROYING THE WIKI PAGES

2006-03-30 Thread Lodewijk Duymaer van Twist
THE WIKI PAGES Lodewijk Duymaer van Twist wrote: > > > > > Looks strange, many changes now, today, in short time. But I cannot judge what is changed, some one should take a look at it. Bert 21:12 * Wiki page SqliteCompetitors <http://www.sqlite.org/cvstrac/wiki?p

[sqlite] Using .testcase and .check in continuous integration test

2017-10-16 Thread Lodewijk Duymaer van Twist
I would like use .testcase and .check in our GitLab Continuous Integration test. GitLab pipelines will check process return code for success or fail. Consider a simple test: lodewijk@DebianDev:~$ sqlite3 database.db3 < test.sql testcase-100 ok testcase-110 ok lodewijk@DebianDev:~$ echo $?

Re: [sqlite] Using .testcase and .check in continuous integration test

2017-10-17 Thread Lodewijk Duymaer van Twist
ail.com> Aan: "sqlite-users" <sqlite-users@mailinglists.sqlite.org> Verzonden: Maandag 16 oktober 2017 13:49:18 Onderwerp: Re: [sqlite] Using .testcase and .check in continuous integration test On Mon, Oct 16, 2017 at 12:32 PM, Lodewijk Duymaer van Twist < lodew...@adesys.

Re: [sqlite] Using .testcase and .check in continuous integration test

2017-10-17 Thread Lodewijk Duymaer van Twist
users@mailinglists.sqlite.org> Verzonden: Dinsdag 17 oktober 2017 13:38:13 Onderwerp: Re: [sqlite] Using .testcase and .check in continuous integration test On Tue, Oct 17, 2017 at 12:30 PM, Lodewijk Duymaer van Twist < lodew...@adesys.nl> wrote: > That would be an other way, but what I'm

[sqlite] Question about using json_remove to remove items from an array

2018-01-15 Thread Lodewijk Duymaer van Twist
Hi All, I have a question about removing items from a array. I'm using creating json_object queries to push the results directly into protobuf messages. Long story short, I've used a view to workaround the arbitrary order of json_group_array using a some sequence nr to order by (Is this

[sqlite] Unexpected sqlite3_trace_v2 sqlite3_expanded_sql output.

2018-06-22 Thread Lodewijk Duymaer van Twist
Hi, I'm tracing queries that my application makes using sqlite3_trace_v2 and sqlite3_expanded_sql in the callback. The application uses sqlite 3.22.0. At some point the software will call sqlite3_exec with the following statement: BEGIN TRANSACTION; DELETE FROM call_lists WHERE id = 11;

Re: [sqlite] Unexpected sqlite3_trace_v2 sqlite3_expanded_sql output.

2018-06-22 Thread Lodewijk Duymaer van Twist
ted sqlite3_trace_v2 sqlite3_expanded_sql output. Lodewijk Duymaer van Twist wrote: > I'm tracing queries that my application makes using sqlite3_trace_v2 and > sqlite3_expanded_sql in the callback. The application uses sqlite 3.22.0. > > At some point the software will call