Re: [sqlite] Proposed incompatible changes to the SQLite VFS layer

2008-05-03 Thread D. Richard Hipp
On May 3, 2008, at 12:30 AM, Roger Binns wrote: > > I would like a #define of the current version number. http://www.sqlite.org/c3ref/c_version.html D. Richard Hipp [EMAIL PROTECTED] ___ sqlite-users mailing list sqlite-users@sqlite.org

Re: [sqlite] Proposed incompatible changes to the SQLite VFS layer

2008-05-03 Thread Shawn Wilsher
On Sat, May 3, 2008 at 12:30 AM, Roger Binns <[EMAIL PROTECTED]> wrote: > I'd also prefer the documentation to be in the wiki so people who use it > can update it as they discover various issues. The doc is currently > duplicated in http://www.sqlite.org/34to35.html and >

Re: [sqlite] Proposed incompatible changes to the SQLite VFS layer

2008-05-02 Thread Roger Binns
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 D. Richard Hipp wrote: > suggest API or functionality changes, now would be a good to to do so, I have a few in no particular order, based on currently implementing vfs in my Python SQLite wrapper. I would like a #define of the current version

Re: [sqlite] Proposed incompatible changes to the SQLite VFS layer

2008-05-02 Thread D. Richard Hipp
On May 2, 2008, at 2:07 PM, Ken wrote: > I use the VFS to disable journal file creation and writing. > > Any possibility to make this part of the sqlite3_open_v2 mode > parameter? > > That way I could drop my custom VFS. > http://www.sqlite.org/pragma.html#pragma_journal_mode Before you rush

Re: [sqlite] Proposed incompatible changes to the SQLite VFS layer

2008-05-02 Thread Ken
I use the VFS to disable journal file creation and writing. Any possibility to make this part of the sqlite3_open_v2 mode parameter? That way I could drop my custom VFS. Thanks, Ken "D. Richard Hipp" <[EMAIL PROTECTED]> wrote: The Virtual File System (VFS) layer for SQLite was introduced in

Re: [sqlite] Proposed incompatible changes to the SQLite VFS layer

2008-05-02 Thread Derrell Lipman
On Fri, May 2, 2008 at 11:56 AM, D. Richard Hipp <[EMAIL PROTECTED]> wrote: > However, as we have gained experience with the VFS, we have come to > realize that the original VFS design has some warts. In particular, > not all of the methods in the VFS interface are able to return the > errors

[sqlite] Proposed incompatible changes to the SQLite VFS layer

2008-05-02 Thread D. Richard Hipp
The Virtual File System (VFS) layer for SQLite was introduced in version 3.5.0 on 2007-09-04. The VFS interface has made SQLite much easier to port to unusual systems. However, as we have gained experience with the VFS, we have come to realize that the original VFS design has some warts.