Re: [sqlite] What does SQLITE_IOERR_VNODE mean?

2017-04-11 Thread Jens Alfke
Apple's darwin-dev mailing list, hosted at lists.apple.com , might be a good place to ask about this. (I'm subscribed to it, so I could forward a question if the OP doesn't want to go to the bother of subscribing.) —Jens ___

Re: [sqlite] What does SQLITE_IOERR_VNODE mean?

2017-04-11 Thread Simon Slavin
On 11 Apr 2017, at 4:06pm, Richard Hipp wrote: > SQLITE_IOERR_VNODE is an error code used by proprietary modifications > to SQLite implemented by Apple for use on MacOS and iOS. I am told > "The code indicates that a file relevant to the call was invalidated > by a dispatch

Re: [sqlite] What does SQLITE_IOERR_VNODE mean?

2017-04-11 Thread Richard Hipp
On 4/11/17, Yf Shen wrote: > We have an application that connects to a small SQLite database in > read-only mode and do some very simple SELECT queries. > > We recently upgraded Mac OS to 10.12, and the application started to > sporadically fail with a general (useless) error

Re: [sqlite] What does SQLITE_OS_WINRT mean

2014-03-12 Thread Joe Mistachkin
> > What does the macro SQLITE_OS_WINRT mean? > When it is set to non-zero, it means that the SQLite core library is being built specifically for the Windows Runtime (present on Windows 8.x): https://en.wikipedia.org/wiki/Windows_Runtime -- Joe Mistachkin

RE: [sqlite] What does this mean???

2007-02-08 Thread prabhu kumaravelu
From: "Anderson, James H (IT)" <[EMAIL PROTECTED]> Reply-To: sqlite-users@sqlite.org To: Subject: [sqlite] What does this mean??? Date: Wed, 7 Feb 2007 17:33:21 -0500 not an error(21) at dbdimp.c line 398 I'm using DBD::SQLite and got this error. What does it mean

Re: [sqlite] What does this mean???

2007-02-08 Thread Clark Christensen
WOW. Good to know. Thanks Jim (and Matt). -Clark - Original Message From: "Anderson, James H (IT)" <[EMAIL PROTECTED]> To: Matt Sergeant <[EMAIL PROTECTED]> Cc: sqlite-users@sqlite.org Sent: Thursday, February 8, 2007 8:36:31 AM Subject: RE: [sqlite] What do

RE: [sqlite] What does this mean???

2007-02-08 Thread Anderson, James H \(IT\)
Looks like removing the semi-colon did the trick. Thanks very much. -Original Message- From: Matt Sergeant [mailto:[EMAIL PROTECTED] Sent: Thursday, February 08, 2007 11:09 AM To: Anderson, James H (IT) Cc: sqlite-users@sqlite.org Subject: Re: [sqlite] What does this mean??? On 8-Feb

RE: [sqlite] What does this mean???

2007-02-08 Thread Anderson, James H \(IT\)
The output after setting $dbh->trace(3): insert or replace into TMP_credDerivOrig select A.date, A.CDId, A.CDName, A.CDTicket, A.tradeId, A.tapsAccount, A.CDBook, coalesce(A.CDFid,'') CDFid, A.CDStatus, A.CDTradeDate, A.CDExpDate, A.CDNotional, A.CDCurr, A.CDSellBuy, A.CDType, A.CDExerType,

RE: [sqlite] What does this mean???

2007-02-08 Thread Anderson, James H \(IT\)
Statement " "] at /u/crdceed/lib/perl5/DBUtilLite.pm line 185. -Original Message- From: Clark Christensen [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 07, 2007 7:30 PM To: sqlite-users@sqlite.org Subject: Re: [sqlite] What does this mean??? Jim, Line 398 in dbdimp.c appears t

RE: [sqlite] What does this mean???

2007-02-08 Thread Anderson, James H \(IT\)
urned when the most recent API call was ** successful. */ const void *sqlite3_errmsg16(sqlite3*); -Original Message- From: Clark Christensen [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 07, 2007 7:30 PM To: sqlite-users@sqlite.org Subject: Re: [sqlite] What does this mean??? Jim,

RE: [sqlite] What does this mean???

2007-02-08 Thread Anderson, James H \(IT\)
Thanks, Clark. I'll give that a try. jim -Original Message- From: Clark Christensen [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 07, 2007 7:30 PM To: sqlite-users@sqlite.org Subject: Re: [sqlite] What does this mean??? Jim, Line 398 in dbdimp.c appears to be in DBD-SQLite's

Re: [sqlite] What does this mean???

2007-02-07 Thread Clark Christensen
rough at http://search.cpan.org/src/TIMB/DBI_AdvancedTalk_2004/index.htm -Clark - Original Message From: "Anderson, James H (IT)" <[EMAIL PROTECTED]> To: sqlite-users@sqlite.org Sent: Wednesday, February 7, 2007 3:28:00 PM Subject: RE: [sqlite] What does this mean??? Yes,

RE: [sqlite] What does this mean???

2007-02-07 Thread Anderson, James H \(IT\)
ailto:[EMAIL PROTECTED] On Behalf Of P Kishor Sent: Wednesday, February 07, 2007 6:16 PM To: sqlite-users@sqlite.org Subject: Re: [sqlite] What does this mean??? On 2/7/07, Anderson, James H (IT) <[EMAIL PROTECTED]> wrote: > Context :) > > insert or replace into TMP_cred

RE: [sqlite] What does this mean???

2007-02-07 Thread Anderson, James H \(IT\)
sqlite-version: 3.3.5 DBD-SQLite: 1.12 -Original Message- From: Clark Christensen [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 07, 2007 6:15 PM To: sqlite-users@sqlite.org Subject: Re: [sqlite] What does this mean??? What version of SQLite, and what version of DBD-SQLite? I saw

Re: [sqlite] What does this mean???

2007-02-07 Thread P Kishor
te.org Subject: Re: [sqlite] What does this mean??? On 2/7/07, Anderson, James H (IT) <[EMAIL PROTECTED]> wrote: > not an error(21) at dbdimp.c line 398 > > I'm using DBD::SQLite and got this error. What does it mean and how best > to hanle it? > well, how about some con

Re: [sqlite] What does this mean???

2007-02-07 Thread Clark Christensen
What version of SQLite, and what version of DBD-SQLite? I saw this predictably with DBD-SQLite 1.09 and SQLite 3.2.7 where I did something like: $sth = $dbh->prepare("select foo, bar from mytable where rowid = ?"); for $i (1..5) { ($myfoo, $mybar) = $dbh->selectrow_array($sth,

RE: [sqlite] What does this mean???

2007-02-07 Thread Anderson, James H \(IT\)
affected: 566606 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of P Kishor Sent: Wednesday, February 07, 2007 5:39 PM To: sqlite-users@sqlite.org Subject: Re: [sqlite] What does this mean??? On 2/7/07, Anderson, James H (IT) <[EMAIL PROTECTED]>

Re: [sqlite] What does this mean???

2007-02-07 Thread P Kishor
On 2/7/07, Anderson, James H (IT) <[EMAIL PROTECTED]> wrote: not an error(21) at dbdimp.c line 398 I'm using DBD::SQLite and got this error. What does it mean and how best to hanle it? well, how about some context? What is the structure of the table(s) you are querying, what is the query,