Re: [sqlite] sqlite wrapper to prevent locking

2005-04-21 Thread D. Richard Hipp
> I do not unfortunately have any place to host this work.  There may be 
> somebody on this list who knows of a place where this can be published 
> for any members who may with make use of it.
> 

http://www.sqlite.org/contrib


-- 
D. Richard Hipp <[EMAIL PROTECTED]>



Re: [sqlite] sqlite wrapper to prevent locking

2005-04-21 Thread Kervin L. Pierre
Ben Clewett wrote:
I do not unfortunately have any place to host this work.  There may be 
somebody on this list who knows of a place where this can be published 
for any members who may with make use of it.

http://sourceforge.net/ ?


[sqlite] sqlite wrapper to prevent locking

2005-04-21 Thread Ben Clewett
Dear users,
I have attached another version of my wrapper for SQLite.
This returns a table in memory and releases all locks.  Therefore 
providing a safer, simpler and very useful API.

This version uses less memory, gets meta-data and fixes a bug or two.
This version also provides some streaming formats.  Dumping content of 
result to a file pointer.  Two formats for debugging, two for streaming:

Debug Format 1:
+++
|a   |b   |
+++
|1   |A   |
|2   |B   |
|NULL|C   |
|4   |NULL|
|NULL|NULL|
+++
Debug Format 2:

  
a
b
  

1
A


2
B


NULL
C


4
NULL


NULL
NULL


Stream Format 1:
"a","b"
"1","A"
"2","B"
"","C"
"4",""
"",""
Stream Format 2:

  
  
  
  
  

I do not unfortunately have any place to host this work.  There may be 
somebody on this list who knows of a place where this can be published 
for any members who may with make use of it.

Kind regards,
Ben Clewett.


sqlite_wrapper.tar.gz
Description: GNU Zip compressed data