Re: [sqlite] Propose minor incompatible API change

2011-01-11 Thread Scott A Mintz
There's the issue of this is what I meant vs. this is what I did. When you have a couple hundred customer's, changing the code is painful but doable. When you have a couple million customer's, then what is out there is the true API and must be kept around. Microsoft has bent over backwards

Re: [sqlite] SQLite Documentation

2010-12-06 Thread Scott A Mintz
It doesn't seem to work in Win7. I get a table of contents but the content window is displaying an error. -Scott sqlite-users-boun...@sqlite.org wrote on 12/04/2010 03:51:04 AM: Hello. Would you like to have a downloadable version of the SQLite Documentation? I've created one in Windows

Re: [sqlite] SQLite Documentation

2010-12-06 Thread Scott A Mintz
Thanks. I saw that response after I had already replied. And it did work for me. -Scott sqlite-users-boun...@sqlite.org wrote on 12/06/2010 01:19:10 PM: Scott A Mintz sami...@ra.rockwell.com писал(а) в своём письме Tue, 07 Dec 2010 00:03:35 +0600: It doesn't seem to work in Win7. I

[sqlite] Size query

2010-11-03 Thread Scott A Mintz
Is it possible to construct a query that will tell me the total size in bytes of the result set? Specifically, in a messaging protocol that returns data we need to fragment the reply and it would be nice to know how much data or how many packets will be required to send the response. Thanks,

Re: [sqlite] Size query

2010-11-03 Thread Scott A Mintz
? The result would be the size. Otherwise, the only thing I can think of is just doing a select to get the results you want, then just keep a running tally on what would need to be transmitted, then do your packet math. On Wed, Nov 3, 2010 at 6:24 PM, Scott A Mintz sami

Re: [sqlite] Sqlite with VS 2008

2010-10-29 Thread Scott A Mintz
I would suggest using the pre-compiled binary sqlite3.dll and just call into the DLL. You can easily create an import library to link with in your application by using the LIB /DEF command: lib /def:sqlite3.def That will create sqlite3.lib and sqlite3.exp. You can link against the

Re: [sqlite] Porting SQLite 3.7.2 to vxWorks 6.7

2010-10-11 Thread Scott A Mintz
, pgMgrPageAllocAt you should modify kernel components with your VIP project. Best Regards, Huang ZhiHua 2010/10/9 Scott A Mintz sami...@ra.rockwell.com Thank you. Those changes (modified slightly for 3.7.2) allowed me to create a DKM project that compiles sqlite3.c to libSQLite3

Re: [sqlite] Porting SQLite 3.7.2 to vxWorks 6.7

2010-10-11 Thread Scott A Mintz
you should modify kernel components with your VIP project. Best Regards, Huang ZhiHua 2010/10/9 Scott A Mintz sami...@ra.rockwell.com Thank you. Those changes (modified slightly for 3.7.2) allowed me to create a DKM project that compiles sqlite3.c to libSQLite3.a. However, when I

Re: [sqlite] Porting SQLite 3.7.2 to vxWorks 6.7

2010-10-11 Thread Scott A Mintz
. -Shane On Mon, Oct 11, 2010 at 12:11 PM, Scott A Mintz sami...@ra. rockwell.com wrote: I think there is a bug in 3.7.2 when you define SQLITE_OMIT_WAL. There are references to pagerPagecount() that cannot be resolved because that function is defined inside of a #ifndef SQLITE_OMIT_WAL

Re: [sqlite] Porting SQLite 3.7.2 to vxWorks 6.7

2010-10-08 Thread Scott A Mintz
, Huang Zhihua 2010/10/8 Scott A Mintz sami...@ra.rockwell.com I searched through all the mail archives to see if I could find someone that has ported SQLite to vxWorks in kernel mode. Apparently, there are a few folks attempting it. And fewer succeeding at it. I found an article

[sqlite] Porting SQLite 3.7.2 to vxWorks 6.7

2010-10-07 Thread Scott A Mintz
I searched through all the mail archives to see if I could find someone that has ported SQLite to vxWorks in kernel mode. Apparently, there are a few folks attempting it. And fewer succeeding at it. I found an article published by ZhiHua Huang where he describes the mods he made to port