Re: [sqlite] Expose struct Mem and struct Vdbe to other application

2014-09-23 Thread Hick Gunter
stored procedures? -Ursprüngliche Nachricht- Von: Prakash Premkumar [mailto:prakash.p...@gmail.com] Gesendet: Montag, 22. September 2014 15:37 An: General Discussion of SQLite Database Betreff: [sqlite] Expose struct Mem and struct Vdbe to other application Hi, Let's assume I am

Re: [sqlite] Expose struct Mem and struct Vdbe to other application

2014-09-23 Thread Prakash Premkumar
...@gmail.com] Gesendet: Dienstag, 23. September 2014 06:29 An: General Discussion of SQLite Database Betreff: Re: [sqlite] Expose struct Mem and struct Vdbe to other application Thanks a lot for your reply Hick. I'm trying to split the results of joins. I have one struct per table and if I am

Re: [sqlite] Expose struct Mem and struct Vdbe to other application

2014-09-23 Thread Hick Gunter
are not encouraged by the SQLite Dev team. -Ursprüngliche Nachricht- Von: Prakash Premkumar [mailto:prakash.p...@gmail.com] Gesendet: Dienstag, 23. September 2014 09:25 An: General Discussion of SQLite Database Betreff: Re: [sqlite] Expose struct Mem and struct Vdbe to other application Thanks

Re: [sqlite] Expose struct Mem and struct Vdbe to other application

2014-09-23 Thread Simon Slavin
On 23 Sep 2014, at 8:25am, Prakash Premkumar prakash.p...@gmail.com wrote: Thanks a lot for your opinion Hick. But the act of exposing struct Vdbe should be simple right. It's there sitting on my source code Not really. It's there in someone else's source code. You're just compiling that

Re: [sqlite] Expose struct Mem and struct Vdbe to other application

2014-09-23 Thread dave
...@sqlite.org] On Behalf Of Prakash Premkumar Sent: Monday, September 22, 2014 11:29 PM To: General Discussion of SQLite Database Subject: Re: [sqlite] Expose struct Mem and struct Vdbe to other application Thanks a lot for your reply Hick. I'm trying to split the results of joins. I have one

Re: [sqlite] Expose struct Mem and struct Vdbe to other application

2014-09-23 Thread James K. Lowden
On Tue, 23 Sep 2014 14:12:19 -0500 dave d...@ziggurat29.com wrote: sounds like you are trying to 'bind' your column buffers once for the statement, sort of like we do with, say ODBC. (and sort of like we do in sqlite for parameters). To wit there is not a means of doing that, but are you

[sqlite] Expose struct Mem and struct Vdbe to other application

2014-09-22 Thread Prakash Premkumar
Hi, Let's assume I am writing a c code which directly invokes the sqlite_step statement. After the execution of the statement, I would like to access the pResultRow of Vdbe (which obtained by pVbe = (Vdbe*) pStmt ). How can I expose the struct Vdbe,Mem and the likes to external applications.

Re: [sqlite] Expose struct Mem and struct Vdbe to other application

2014-09-22 Thread Hick Gunter
. September 2014 15:37 An: General Discussion of SQLite Database Betreff: [sqlite] Expose struct Mem and struct Vdbe to other application Hi, Let's assume I am writing a c code which directly invokes the sqlite_step statement. After the execution of the statement, I would like to access

Re: [sqlite] Expose struct Mem and struct Vdbe to other application

2014-09-22 Thread Prakash Premkumar
Nachricht- Von: Prakash Premkumar [mailto:prakash.p...@gmail.com] Gesendet: Montag, 22. September 2014 15:37 An: General Discussion of SQLite Database Betreff: [sqlite] Expose struct Mem and struct Vdbe to other application Hi, Let's assume I am writing a c code which directly invokes