Re: [sqlite] sqlite wrapper .dll - best way to store result set and expose it to user

2012-08-27 Thread Roger Binns
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 27/08/12 16:05, Daniel Dawson wrote: > I am writing a .dll-based wrapper for sqlite3 in C++. Many others have been down that path before. I suggest having a look at their work first. It should also be noted that the existing SQLite API can be use

Re: [sqlite] sqlite wrapper .dll - best way to store result set and expose it to user

2012-08-27 Thread Simon Slavin
On 28 Aug 2012, at 12:05am, Daniel Dawson wrote: > I am writing a .dll-based wrapper for sqlite3 in C++. I recommend you study the ones already available before you reinvent the wheel. Google 'sqlite c++ wrapper'. Simon. ___ sqlite-users mailing li

[sqlite] sqlite wrapper .dll - best way to store result set and expose it to user

2012-08-27 Thread Daniel Dawson
I am writing a .dll-based wrapper for sqlite3 in C++. I am planning on providing functions to do inserts and selects and other things, it is mostly centred around usability for whoever uses the .dll. For example my select function looks like this void* SQL_singleSelect(char *query, ch