Re: [sqlite] SQLite version 3.8.5 beta

2014-06-06 Thread Török Edwin
On 05/27/2014 01:49 PM, Török Edwin wrote:
> On 05/27/2014 01:40 PM, Richard Hipp wrote:
>>> SQLite 3.8.4.3 still has the SQLITE_PROTOCOL bug with WAL databases [1],
>>> and I don't see anything about that in the changes list.
>>> Is it still a know bug in 3.8.5?
>>>
>>> I'm confused on whats the status of that bug.
>>> When I reported the rng fork issue to the ML it got fixed really quickly
>>> (thanks for that!), but when I asked [1] about the SQLITE_PROTOCOL
>>> thats been known since 3 years [2] it got ignored.
>>> Tried opening a ticket, and that one got deleted.
>>>
>>
>> Nothing has changed with SQLITE_PROTOCOL since 3.7.6.
>>
>> If you are getting PROTOCOL errors, then the thing to do is to describe the
>> circumstances under which the errors occur so that we can begin to try to
>> understand what is going wrong.
> 
> The circumstances are very similar to those described in this commit (in a 
> different application though):
> https://github.com/NixOS/nix/commit/d05bf01dbf8e36d545df9689bdec0b72
> 
> I'll create a testcase that illustrates my problem and get back to you.

Hi,

I made a little progress on the testcase: now I have a machine where 
SQLITE_PROTOCOL triggers at least once if I import large amounts of data 
overnight.
So I can test patches, but unfortunately I wasn't able to create a small 
self-contained testcase yet. I added some debugging code to sqlite3.c to know 
which WAL_RETRYs trigger (it collects them all and prints them when cnt>100):
http://gitweb.skylable.com/gitweb/?p=sx.git;a=blob_plain;f=3rdparty/libsqlite3/sqlite3.c;hb=HEAD

And this is what I got in my logs:

walTryBeginRead: WAL_RETRY exceeded
walTryBeginRead WAL_RETRY locs: 49000 49000 49000 49000 49000 49000 49000 49000 
49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49
000 49000 49000 49000 49000 49000 49000 49000 49000
walTryBeginRead WAL_RETRY locs: 49000 49000 49000 49000 49000 49000 49000 49000 
49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49
000 49000 49000 49000 49000 49000 49000 49000 49000
walTryBeginRead WAL_RETRY locs: 49000 49000 49000 49000 49000 49000 49000 49000 
49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49
000 49000 49000 49000 49000 49000 49000 49000 49000
walTryBeginRead WAL_RETRY locs: 49000 49000 49000 49000 49000 49000 49000 49000 
49000 49000 49000 49000 49000
statement aborts at 33: [INSERT INTO topush (block, size, node) VALUES (:b, :s, 
:n)] locking protocol

So it looks like it triggers here all the time:
rc = walLockShared(pWal, WAL_READ_LOCK(mxI));
if( rc ){
  pWal->retry_locs[cnt] = __LINE__;// added for debugging
  return rc==SQLITE_BUSY ? WAL_RETRY : rc;
}

Database size:
-rw-r--r-- 1 nobody nogroup  29M Jun  6 07:50 /mnt/spare/sx/xfers.db
-rw-r--r-- 1 nobody nogroup 224K Jun  6 07:50 /mnt/spare/sx/xfers.db-shm
-rw-r--r-- 1 nobody nogroup  25M Jun  6 07:50 /mnt/spare/sx/xfers.db-wal

Database schema:
CREATE TABLE hashfs (key TEXT NOT NULL PRIMARY KEY, value TEXT NOT NULL);
CREATE TABLE topush (id INTEGER NOT NULL PRIMARY KEY, block BLOB(20) NOT NULL, 
size INTEGER NOT NULL, node BLOB(16) NOT NULL, sched_time TEXT NOT NULL DEFAULT 
(strftime('%Y-%m-%d %H:%M:%f')), expiry_time TEXT NOT NULL DEFAULT 
(strftime('%Y-%m-%d %H:%M:%f', 'now', '900 seconds')), UNIQUE (block, size, 
node));
CREATE INDEX topush_sched ON topush(sched_time ASC, expiry_time);

WAL mode:
PRAGMA synchronous=NORMAL
PRAGMA journal_mode=WAL

busy timeout: 20s
there is also a WAL hook that does a passive checkpoint at 1 pages, and a 
restart checkpoint at 2 pages
(and a passive checkpoint at 5000 pages when idle), however I've been getting 
these sqlite_protocol errors
even when using sqlite's default checkpoints.

On another machine:
[3299] walTryBeginRead: WAL_RETRY exceeded
[3299] walTryBeginRead WAL_RETRY locs: 49000 49000 49000 49000 49000 49000 
49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 
49000 49000 49000 49000 49000 49000 49000 49000 49000 49000
[3350] walTryBeginRead: WAL_RETRY exceeded
[3299] walTryBeginRead WAL_RETRY locs: 49000 49000 49000 49000 49000 49000 
49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 
49000 49000 49000 49000 49000 49000 49000 49000 49000 49000
[3350] walTryBeginRead WAL_RETRY locs: 49000 49000 49000 49000 49000 49000 
49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 
49000 49000 49000 49000 49000 49000 49000 49000 49000 49000
[3299] walTryBeginRead WAL_RETRY locs: 49000 49000 49000 49000 49000 49000 
49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 
49000 49000 49000 49000 49000 49000 49000 49000 49000 49000
[3350] walTryBeginRead WAL_RETRY locs: 49000 49000 49000 49000 49000 49000 
49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 49000 
49000 49000 49000 49000 49000 49000 49000 49000 49000 49000
[3299] walTryBeginRead WAL_RETRY 

Re: [sqlite] SQLite version 3.8.5 beta

2014-05-27 Thread Keith Medcalf
>If you are interested to try an sqlite3.dll built by the latest
>MinGW (version 4.0.3), you can have a look here:

I believe the latest MinGW gcc version is
gcc version 4.8.1 (GCC)




___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] SQLite version 3.8.5 beta

2014-05-27 Thread jose isaias cabrera


"Jan Nijtmans" wrote...



2014-05-27 5:57 GMT+02:00 jose isaias cabrera :

"Richard Hipp" wrote...



Please report any problems to this mailing list and/or directly to me.



I am having problem using the pre-built DLL:
http://www.sqlite.org/snapshot/sqlite-dll-win32-x86-201405262205.zip

I am getting this error:

ProgName.exe Entry Point Not Found
The procedure entry point FlsAlloc cound not be located in the dynamic 
Link

library KERNEL32.dll


The entry point FlsAlloc doesn't occur anywhere in the sqlite3.c source
code, it is generated by Visual Studio. Previous sqlite3.dll versions
were generated with MinGW (version 3.17, I guess) that's why
they worked fine on Windows XP.
H... I am running the original DLL created for 3.8.4.3 on the WinXP and 
it works fine, so it was not a change as far as v3.17 and before, but just 
this new DLL.  I am wondering if it is also because it is a pre-release and 
the "released" version will work fine.



If you are interested to try an sqlite3.dll built by the latest
MinGW (version 4.0.3), you can have a look here:
   
This project is still in the startup phase, but I'm trying to fill the
gap Microsoft is leaving behind..
Yeah, this one works.  Thanks.  I try this as one as I will need to have 
support for XP for 1 or 2 years (some of the machines we used here are still 
XP.)  Will these work with Vista and Server 2003 also?  Never mind, I can 
give that a try later.  Thanks for this effort.  It is appreciated as much 
as sqlite. :-)


Thanks.

___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] SQLite version 3.8.5 beta

2014-05-27 Thread jose isaias cabrera

"Richard Hipp" wrote...

On Tue, May 27, 2014 at 10:39 AM, jose isaias cabrera 
:



"Richard Hipp" wrote...





Please report any problems to this mailing list and/or directly to me.





 I am having problem using the pre-built DLL:

http://www.sqlite.org/snapshot/sqlite-dll-win32-x86-201405262205.zip

I am getting this error:

ProgName.exe Entry Point Not Found
The procedure entry point FlsAlloc cound not be located in the dynamic
Link
library KERNEL32.dll



The entry point FlsAlloc doesn't occur anywhere in the sqlite3.c source
code, it is generated by Visual Studio. Previous sqlite3.dll versions
were generated with MinGW (version 3.17, I guess) that's why
they worked fine on Windows XP.

H... I am running the original DLL created for 3.8.4.3 on the WinXP 
and
it works fine, so it was not a change as far as v3.17 and before, but 
just
this new DLL.  I am wondering if it is also because it is a pre-release 
and

the "released" version will work fine.



It is probably because Dan usually builds the release DLLs using mingw
(32-bit) but I built those pre-release DLLs using MSVC 2012.


That's good news. I'd rather have "one place" for support. However, it's 
good to know that there are alternatives such as Jan's.  Thanks both for 
your great effort in providing solutions to us little people. :-)



 If you are interested to try an sqlite3.dll built by the latest

MinGW (version 4.0.3), you can have a look here:
   
This project is still in the startup phase, but I'm trying to fill the
gap Microsoft is leaving behind..


Yeah, this one works.  Thanks.  I try this as one as I will need to have
support for XP for 1 or 2 years (some of the machines we used here are
still
XP.)  Will these work with Vista and Server 2003 also?  Never mind, I can
give that a try later.  Thanks for this effort.  It is appreciated as 
much

as sqlite. :-)

Thanks.


___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] SQLite version 3.8.5 beta

2014-05-27 Thread Richard Hipp
On Tue, May 27, 2014 at 10:39 AM, jose isaias cabrera  wrote:

> "Jan Nijtmans" wrote...
>
>
>  2014-05-27 5:57 GMT+02:00 jose isaias cabrera :
>>
>>> "Richard Hipp" wrote...
>>>
>> 
>>
>>> Please report any problems to this mailing list and/or directly to me.

>>>
>>  I am having problem using the pre-built DLL:
>>> http://www.sqlite.org/snapshot/sqlite-dll-win32-x86-201405262205.zip
>>>
>>> I am getting this error:
>>>
>>> ProgName.exe Entry Point Not Found
>>> The procedure entry point FlsAlloc cound not be located in the dynamic
>>> Link
>>> library KERNEL32.dll
>>>
>>
>> The entry point FlsAlloc doesn't occur anywhere in the sqlite3.c source
>> code, it is generated by Visual Studio. Previous sqlite3.dll versions
>> were generated with MinGW (version 3.17, I guess) that's why
>> they worked fine on Windows XP.
>>
> H... I am running the original DLL created for 3.8.4.3 on the WinXP and
> it works fine, so it was not a change as far as v3.17 and before, but just
> this new DLL.  I am wondering if it is also because it is a pre-release and
> the "released" version will work fine.


It is probably because Dan usually builds the release DLLs using mingw
(32-bit) but I built those pre-release DLLs using MSVC 2012.


>
>
>  If you are interested to try an sqlite3.dll built by the latest
>> MinGW (version 4.0.3), you can have a look here:
>>
>> This project is still in the startup phase, but I'm trying to fill the
>> gap Microsoft is leaving behind..
>>
> Yeah, this one works.  Thanks.  I try this as one as I will need to have
> support for XP for 1 or 2 years (some of the machines we used here are
> still
> XP.)  Will these work with Vista and Server 2003 also?  Never mind, I can
> give that a try later.  Thanks for this effort.  It is appreciated as much
> as sqlite. :-)
>
> Thanks.
>
>
> ___
> sqlite-users mailing list
> sqlite-users@sqlite.org
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>



-- 
D. Richard Hipp
d...@sqlite.org
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] SQLite version 3.8.5 beta

2014-05-27 Thread jose isaias cabrera

"Jan Nijtmans" wrote...



2014-05-27 5:57 GMT+02:00 jose isaias cabrera :

"Richard Hipp" wrote...



Please report any problems to this mailing list and/or directly to me.



I am having problem using the pre-built DLL:
http://www.sqlite.org/snapshot/sqlite-dll-win32-x86-201405262205.zip

I am getting this error:

ProgName.exe Entry Point Not Found
The procedure entry point FlsAlloc cound not be located in the dynamic 
Link

library KERNEL32.dll


The entry point FlsAlloc doesn't occur anywhere in the sqlite3.c source
code, it is generated by Visual Studio. Previous sqlite3.dll versions
were generated with MinGW (version 3.17, I guess) that's why
they worked fine on Windows XP.

H... I am running the original DLL created for 3.8.4.3 on the WinXP and
it works fine, so it was not a change as far as v3.17 and before, but just
this new DLL.  I am wondering if it is also because it is a pre-release and
the "released" version will work fine.


If you are interested to try an sqlite3.dll built by the latest
MinGW (version 4.0.3), you can have a look here:
   
This project is still in the startup phase, but I'm trying to fill the
gap Microsoft is leaving behind..

Yeah, this one works.  Thanks.  I try this as one as I will need to have
support for XP for 1 or 2 years (some of the machines we used here are still
XP.)  Will these work with Vista and Server 2003 also?  Never mind, I can
give that a try later.  Thanks for this effort.  It is appreciated as much
as sqlite. :-)

Thanks.

___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] SQLite version 3.8.5 beta

2014-05-27 Thread Jan Nijtmans
2014-05-27 1:24 GMT+02:00 Richard Hipp :
> Please report any problems to this mailing list and/or directly to me.

$ gcc -DSQLITE_USE_FCNTL_TRACE -c sqlite3.c
sqlite3.c: In function ‘sqlite3VdbeExec’:
sqlite3.c:73742:37: error: expected expression before ‘==’ token
   if( MASKBIT(i) & p->btreeMask)==0 ) continue;
 ^
sqlite3.c:73742:41: error: expected statement before ‘)’ token
   if( MASKBIT(i) & p->btreeMask)==0 ) continue;

Bisecting points to this commit:


Regards,
Jan Nijtmans
Index: src/vdbe.c
==
--- src/vdbe.c
+++ src/vdbe.c
@@ -6278,11 +6278,11 @@
 #ifdef SQLITE_USE_FCNTL_TRACE
   zTrace = (pOp->p4.z ? pOp->p4.z : p->zSql);
   if( zTrace ){
 int i;
 for(i=0; inDb; i++){
-  if( MASKBIT(i) & p->btreeMask)==0 ) continue;
+  if( (MASKBIT(i) & p->btreeMask)==0 ) continue;
   sqlite3_file_control(db, db->aDb[i].zName, SQLITE_FCNTL_TRACE, zTrace);
 }
   }
 #endif /* SQLITE_USE_FCNTL_TRACE */
 #ifdef SQLITE_DEBUG
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] SQLite version 3.8.5 beta

2014-05-27 Thread Török Edwin
On 05/27/2014 01:40 PM, Richard Hipp wrote:
> On Tue, May 27, 2014 at 4:18 AM, Török Edwin wrote:
> 
>> On 05/27/2014 02:24 AM, Richard Hipp wrote:
>>> Please download beta snapshots of SQLite 3.8.5 from
>>> http://www.sqlite.org/download.html and test them in your applications.
>>  We
>>> hope to release SQLite version 3.8.5 within the next few weeks.
>>>
>>> See http://www.sqlite.org/draft/releaselog/3_8_5.html for the current
>> list
>>> of changes in 3.8.5.
>>>
>>> Please report any problems to this mailing list and/or directly to me.
>>
>> SQLite 3.8.4.3 still has the SQLITE_PROTOCOL bug with WAL databases [1],
>> and I don't see anything about that in the changes list.
>> Is it still a know bug in 3.8.5?
>>
>> I'm confused on whats the status of that bug.
>> When I reported the rng fork issue to the ML it got fixed really quickly
>> (thanks for that!), but when I asked [1] about the SQLITE_PROTOCOL
>> thats been known since 3 years [2] it got ignored.
>> Tried opening a ticket, and that one got deleted.
>>
> 
> Nothing has changed with SQLITE_PROTOCOL since 3.7.6.
> 
> In big bold letters at the top of the ticket entry form, it says:  "Tickets
> for issues that have not been previously discussed on the mailing list will
> usually be deleted without comment."

OK my bad, I thought the ML discussion I found in the archives from 3 years ago
counted as 'discussed'.

> 
> If you are getting PROTOCOL errors, then the thing to do is to describe the
> circumstances under which the errors occur so that we can begin to try to
> understand what is going wrong.

The circumstances are very similar to those described in this commit (in a 
different application though):
https://github.com/NixOS/nix/commit/d05bf01dbf8e36d545df9689bdec0b72

I'll create a testcase that illustrates my problem and get back to you.

Best regards,
--Edwin
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] SQLite version 3.8.5 beta

2014-05-27 Thread Richard Hipp
On Tue, May 27, 2014 at 4:18 AM, Török Edwin wrote:

> On 05/27/2014 02:24 AM, Richard Hipp wrote:
> > Please download beta snapshots of SQLite 3.8.5 from
> > http://www.sqlite.org/download.html and test them in your applications.
>  We
> > hope to release SQLite version 3.8.5 within the next few weeks.
> >
> > See http://www.sqlite.org/draft/releaselog/3_8_5.html for the current
> list
> > of changes in 3.8.5.
> >
> > Please report any problems to this mailing list and/or directly to me.
>
> SQLite 3.8.4.3 still has the SQLITE_PROTOCOL bug with WAL databases [1],
> and I don't see anything about that in the changes list.
> Is it still a know bug in 3.8.5?
>
> I'm confused on whats the status of that bug.
> When I reported the rng fork issue to the ML it got fixed really quickly
> (thanks for that!), but when I asked [1] about the SQLITE_PROTOCOL
> thats been known since 3 years [2] it got ignored.
> Tried opening a ticket, and that one got deleted.
>

Nothing has changed with SQLITE_PROTOCOL since 3.7.6.

In big bold letters at the top of the ticket entry form, it says:  "Tickets
for issues that have not been previously discussed on the mailing list will
usually be deleted without comment."

If you are getting PROTOCOL errors, then the thing to do is to describe the
circumstances under which the errors occur so that we can begin to try to
understand what is going wrong.
-- 
D. Richard Hipp
d...@sqlite.org
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] SQLite version 3.8.5 beta

2014-05-27 Thread Filip Navara
Visual Studio 2013 Update 1 and newer allows explicitly to target Windows
XP, but it has to be compiled with correct runtime library.

Best regards,
Filip Navara


On Tue, May 27, 2014 at 11:33 AM, Jan Nijtmans wrote:

> 2014-05-27 5:57 GMT+02:00 jose isaias cabrera :
> > "Richard Hipp" wrote...
> 
> >> Please report any problems to this mailing list and/or directly to me.
>
> > I am having problem using the pre-built DLL:
> > http://www.sqlite.org/snapshot/sqlite-dll-win32-x86-201405262205.zip
> >
> > I am getting this error:
> >
> > ProgName.exe Entry Point Not Found
> > The procedure entry point FlsAlloc cound not be located in the dynamic
> Link
> > library KERNEL32.dll
>
> The entry point FlsAlloc doesn't occur anywhere in the sqlite3.c source
> code, it is generated by Visual Studio. Previous sqlite3.dll versions
> were generated with MinGW (version 3.17, I guess) that's why
> they worked fine on Windows XP.
>
> If you are interested to try an sqlite3.dll built by the latest
> MinGW (version 4.0.3), you can have a look here:
> 
> This project is still in the startup phase, but I'm trying to fill the
> gap Microsoft is leaving behind..
>
> Thanks!
>
> Regards,
>Jan Nijtmans
> ___
> sqlite-users mailing list
> sqlite-users@sqlite.org
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] SQLite version 3.8.5 beta

2014-05-27 Thread Jan Nijtmans
2014-05-27 5:57 GMT+02:00 jose isaias cabrera :
> "Richard Hipp" wrote...

>> Please report any problems to this mailing list and/or directly to me.

> I am having problem using the pre-built DLL:
> http://www.sqlite.org/snapshot/sqlite-dll-win32-x86-201405262205.zip
>
> I am getting this error:
>
> ProgName.exe Entry Point Not Found
> The procedure entry point FlsAlloc cound not be located in the dynamic Link
> library KERNEL32.dll

The entry point FlsAlloc doesn't occur anywhere in the sqlite3.c source
code, it is generated by Visual Studio. Previous sqlite3.dll versions
were generated with MinGW (version 3.17, I guess) that's why
they worked fine on Windows XP.

If you are interested to try an sqlite3.dll built by the latest
MinGW (version 4.0.3), you can have a look here:

This project is still in the startup phase, but I'm trying to fill the
gap Microsoft is leaving behind..

Thanks!

Regards,
   Jan Nijtmans
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] SQLite version 3.8.5 beta

2014-05-27 Thread Török Edwin
On 05/27/2014 02:24 AM, Richard Hipp wrote:
> Please download beta snapshots of SQLite 3.8.5 from
> http://www.sqlite.org/download.html and test them in your applications.  We
> hope to release SQLite version 3.8.5 within the next few weeks.
> 
> See http://www.sqlite.org/draft/releaselog/3_8_5.html for the current list
> of changes in 3.8.5.
> 
> Please report any problems to this mailing list and/or directly to me.

SQLite 3.8.4.3 still has the SQLITE_PROTOCOL bug with WAL databases [1],
and I don't see anything about that in the changes list.
Is it still a know bug in 3.8.5?

I'm confused on whats the status of that bug.
When I reported the rng fork issue to the ML it got fixed really quickly
(thanks for that!), but when I asked [1] about the SQLITE_PROTOCOL
thats been known since 3 years [2] it got ignored.
Tried opening a ticket, and that one got deleted.

Does it mean the bug is WONTFIX? If so what workaround should applications use?
Do you need a testcase to reproduce it?
Did the bug just got lost between all the mail?

[1] https://www.mail-archive.com/sqlite-users%40sqlite.org/msg82471.html
[2] https://www.mail-archive.com/sqlite-users%40sqlite.org/msg57092.html

Best regards,
--Edwin
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] SQLite version 3.8.5 beta

2014-05-26 Thread jose isaias cabrera


"Richard Hipp" wrote...


Please download beta snapshots of SQLite 3.8.5 from
http://www.sqlite.org/download.html and test them in your applications. 
We

hope to release SQLite version 3.8.5 within the next few weeks.

See http://www.sqlite.org/draft/releaselog/3_8_5.html for the current list
of changes in 3.8.5.

Please report any problems to this mailing list and/or directly to me.


Hi Dr. Hipp.

I am having problem using the pre-built DLL:
http://www.sqlite.org/snapshot/sqlite-dll-win32-x86-201405262205.zip

I am getting this error:

ProgName.exe Entry Point Not Found
The procedure entry point FlsAlloc cound not be located in the dynamic Link 
library KERNEL32.dll


The problem is happening in a Windows XP PC, so I am wondering: have you 
stopped support for WinXP?  By the way, the same program works in Windows 7. 
Thoughts?  Thanks.


josé

___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


[sqlite] SQLite version 3.8.5 beta

2014-05-26 Thread Richard Hipp
Please download beta snapshots of SQLite 3.8.5 from
http://www.sqlite.org/download.html and test them in your applications.  We
hope to release SQLite version 3.8.5 within the next few weeks.

See http://www.sqlite.org/draft/releaselog/3_8_5.html for the current list
of changes in 3.8.5.

Please report any problems to this mailing list and/or directly to me.

Thank you for your help.
-- 
D. Richard Hipp
d...@sqlite.org
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users