Re: [sqlite] SQLite3 extended API usage

2013-07-08 Thread Jay A. Kreibich
On Mon, Jul 08, 2013 at 06:43:33AM +0100, Simon Slavin scratched on the wall: > On 8 Jul 2013, at 5:15am, techi eth wrote: > There is no call 'sqlite_get_table()' in SQLite version 3. Nor is there > anything like it. ...other than sqlite3_get_table()... http://www.sqlite.org/c3ref/free_tab

Re: [sqlite] SQLite3 extended API usage

2013-07-08 Thread techi eth
Yes, sqlite3_get_table() function works!!! Thanks. Better to update documentation accordingly. Cheers- eth On Mon, Jul 8, 2013 at 4:56 PM, Simon Slavin wrote: > > On 8 Jul 2013, at 9:21am, techi eth wrote: > > > We arrive at same place were we start.I am using Sqlite3 version 3.7.9 > > & b

Re: [sqlite] SQLite3 extended API usage

2013-07-08 Thread Baruch Burstein
Did you update your code to sqlite*3*_get_table()? (note the '3'). On Mon, Jul 8, 2013 at 11:21 AM, techi eth wrote: > We arrive at same place were we start.I am using Sqlite3 version 3.7.9 > & by refrence from below link i can use to get tabel function but i am > getting undefined refrence erro

Re: [sqlite] SQLite3 extended API usage

2013-07-08 Thread Simon Slavin
On 8 Jul 2013, at 9:21am, techi eth wrote: > We arrive at same place were we start.I am using Sqlite3 version 3.7.9 > & by refrence from below link i can use to get tabel function but i am > getting undefined refrence error. Does your sqlite3_open_v2() call work ? Does it return SQLITE_OK ? A

Re: [sqlite] SQLite3 extended API usage

2013-07-08 Thread techi eth
We arrive at same place were we start.I am using Sqlite3 version 3.7.9 & by refrence from below link i can use to get tabel function but i am getting undefined refrence error. http://www.sqlite.org/c3ref/free_table.html Is API still available with 3.7.9 version ? Or i want to use than what is the

Re: [sqlite] SQLite3 extended API usage

2013-07-08 Thread Simon Slavin
On 8 Jul 2013, at 8:54am, Kees Nuyt wrote: > On Mon, 8 Jul 2013 06:43:33 +0100, Simon Slavin > wrote: > >> There is no call 'sqlite_get_table()' in SQLite version 3. >> Nor is there anything like it. >> The closest thing is 'sqlite3_exec()'. > > Not completely true. The C API documentation m

Re: [sqlite] SQLite3 extended API usage

2013-07-08 Thread Kees Nuyt
On Mon, 8 Jul 2013 06:43:33 +0100, Simon Slavin wrote: > There is no call 'sqlite_get_table()' in SQLite version 3. > Nor is there anything like it. > The closest thing is 'sqlite3_exec()'. Not completely true. The C API documentation mentions a legacy interface: sqlite3_get_table(). http://www

Re: [sqlite] SQLite3 extended API usage

2013-07-07 Thread Simon Slavin
On 8 Jul 2013, at 5:15am, techi eth wrote: > I am using SQLite3 version : 3.7.9. > > Do i need to configure with some option to get linkage problem get resolved. No. You just need to use version 3 API calls, not version 2 API calls. There is no call 'sqlite_get_table()' in SQLite version 3.

Re: [sqlite] SQLite3 extended API usage

2013-07-07 Thread techi eth
Thanks. I am using SQLite3 version : 3.7.9. Do i need to configure with some option to get linkage problem get resolved. On Sat, Jul 6, 2013 at 1:34 PM, Luuk wrote: > On 06-07-2013 09:50, techi eth wrote: > >> Hi,When i try to use extended API like sqlite_get_table(), i am getting >> >> un

Re: [sqlite] SQLite3 extended API usage

2013-07-06 Thread Luuk
On 06-07-2013 09:50, techi eth wrote: Hi,When i try to use extended API like sqlite_get_table(), i am getting undefined reference to function. How do i get it resolve ? I am following below link for API reference. http://www.sqlite.org/c_interface.html That link leads to: The C language inter

[sqlite] SQLite3 extended API usage

2013-07-06 Thread techi eth
Hi,When i try to use extended API like sqlite_get_table(), i am getting undefined reference to function. How do i get it resolve ? I am following below link for API reference. http://www.sqlite.org/c_interface.html Bye - ___ sqlite-users mailing list sq