Re: [sqlite] Change in behavior between 1.0.79.0 and 1.0.83.0 in System.Data.SQLite

2013-02-14 Thread Joe Mistachkin
Mason, Philip wrote: > > What operation(s) are creating these? > It looks like pretty much any query against the database. > > Are the objects/connections actually orphaned or is there the possibility > that activity could pop up and cause problems? > Yes, I confirmed that the objects are

Re: [sqlite] Bug in table_info

2013-02-14 Thread Richard Hipp
On Thu, Feb 14, 2013 at 3:52 AM, Filip Arlet wrote: > When you open sqlite db with two processes then add column to table from > one. Both processes returns different number of columns if you call PRAGMA > table_info('table_name'); new column is not added to connection where > column wasn't creat

[sqlite] Bug in table_info

2013-02-14 Thread Filip Arlet
As I reported on sqlite page (and the ticket was deleted - this is my first bug report for sqlite, so I don't have experience with this), there is a problem with PRAGMA table_info('table_name'); (even on latest version - 3.7.15.2). When you open sqlite db with two processes then add column to table

Re: [sqlite] [PATCH] only build shell timer on platforms with getrusage()

2013-02-14 Thread Thomas Cort
2013/2/14 Simon Slavin : > On 14 Feb 2013, at 11:49am, Thomas Cort wrote: >> The attached patch > Just a note that you cannot include attachments to messages to this list. Ok, you can fetch the patches here: http://tomcort.com/minix/patch-configure.ac http://tomcort.com/minix/patch-src_shell.c

Re: [sqlite] [PATCH] only build shell timer on platforms with getrusage()

2013-02-14 Thread Simon Slavin
On 14 Feb 2013, at 11:49am, Thomas Cort wrote: > The attached patch Just a note that you cannot include attachments to messages to this list. Please either include your code inline with the message text or put it on a web site somewhere and post the URL. Sorry for the inconvenience, but if

[sqlite] [PATCH] only build shell timer on platforms with getrusage()

2013-02-14 Thread Thomas Cort
Hello, The timer code in src/shell.c relies heavily on getrusage(). Some platforms, Minix for example, don't have getrusage() yet, but it may get it in the future. The attached patch "patch-configure.ac" adds a check for the getrusage function. The other attached patch "patch-src_shell.c" disables