Re: [sqlite] Question about opening database files

2014-06-23 Thread Adil Hasan
Hello Richard, thanks for the response and explanation. adil On Sun, Jun 22, 2014 at 04:51:27PM -0400, Richard Hipp wrote: > On Sun, Jun 22, 2014 at 10:47 AM, Adil Hasan wrote: > > > Hello, > > I would like to add sqlite to a workflow. But, I cannot directly open the > > database in C using the

Re: [sqlite] Question about opening database files

2014-06-22 Thread Richard Hipp
On Sun, Jun 22, 2014 at 10:47 AM, Adil Hasan wrote: > Hello, > I would like to add sqlite to a workflow. But, I cannot directly open the > database in C using the filename as the application I'm using places a > layer > inbetween the filesystem and my workflow. I can open the file with > a comman

Re: [sqlite] Question about opening database files

2014-06-22 Thread Adil Hasan
Hello Mike, thanks for the very quick response. That's very interesting. It looks (maybe I am wrong) as if you open a sqlite database file and then in your program you open a stream and use socat to connect the two together? I'm not sure if I can use such an approach in my situation. In my case

Re: [sqlite] Question about opening database files

2014-06-22 Thread mikeegg1
I’m working on accessing sqlite3 from a process/program that is not able to access sqlite3.a by using sockets through socat(1). Mike On Jun 22, 2014, at 9:47 AM, Adil Hasan wrote: > Hello, > I would like to add sqlite to a workflow. But, I cannot directly open the > database in C using the fil

[sqlite] Question about opening database files

2014-06-22 Thread Adil Hasan
Hello, I would like to add sqlite to a workflow. But, I cannot directly open the database in C using the filename as the application I'm using places a layer inbetween the filesystem and my workflow. I can open the file with a command from the middle-layer and get a file descriptor. Is there a way