Re: [sqlite] Feature Request: Open from fd

2006-01-05 Thread Christian Smith
On Wed, 4 Jan 2006, Steve Lhomme wrote: >[EMAIL PROTECTED] wrote: >> Peter Bierman <[EMAIL PROTECTED]> wrote: >> >>>Related to a project I'm working on, it would be useful for me to be >>>able to open a database file via passing an already open file >>>descriptor to the sqlite open() call. sqlite3

Re: [sqlite] Feature Request: Open from fd

2006-01-04 Thread Steve Lhomme
[EMAIL PROTECTED] wrote: Peter Bierman <[EMAIL PROTECTED]> wrote: Related to a project I'm working on, it would be useful for me to be able to open a database file via passing an already open file descriptor to the sqlite open() call. sqlite3_openfd(). That is not possible. SQLite needs

Re: [sqlite] Feature Request: Open from fd

2006-01-04 Thread drh
Peter Bierman <[EMAIL PROTECTED]> wrote: > Related to a project I'm working on, it would be useful for me to be > able to open a database file via passing an already open file > descriptor to the sqlite open() call. sqlite3_openfd(). > That is not possible. SQLite needs to know the name of the

Re: [sqlite] Feature Request: Open from fd

2006-01-04 Thread Peter Bierman
At 3:53 PM -0600 1/4/06, Aaron Laffin wrote: On 1/4/06, Peter Bierman <[EMAIL PROTECTED]> wrote: Related to a project I'm working on, it would be useful for me to be able to open a database file via passing an already open file descriptor to the sqlite open() call. sqlite3_openfd(). It seem

Re: [sqlite] Feature Request: Open from fd

2006-01-04 Thread Steve Lhomme
Aaron Laffin wrote: On 1/4/06, Peter Bierman <[EMAIL PROTECTED]> wrote: Related to a project I'm working on, it would be useful for me to be able to open a database file via passing an already open file descriptor to the sqlite open() call. sqlite3_openfd(). It seems to me that this would ca

Re: [sqlite] Feature Request: Open from fd

2006-01-04 Thread Aaron Laffin
On 1/4/06, Peter Bierman <[EMAIL PROTECTED]> wrote: > Related to a project I'm working on, it would be useful for me to be > able to open a database file via passing an already open file > descriptor to the sqlite open() call. sqlite3_openfd(). It seems to me that this would cause problems with th

[sqlite] Feature Request: Open from fd

2006-01-04 Thread Peter Bierman
Related to a project I'm working on, it would be useful for me to be able to open a database file via passing an already open file descriptor to the sqlite open() call. sqlite3_openfd(). I need this because I'd prefer to resolve some filesystem permissions access issues in a separate process f