On 8 Jul 2013, at 9:21am, techi eth <techi...@gmail.com> 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 ?

Are you correctly passing the db handle it returns to your other SQLite calls ?

> 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 way ?

The c3ref pages are the correct documentation for all 3.x.x versions so you are 
reading the right pages !  However, this routine is marked as 'legacy' which 
means it’s old and there are better ways to do things now.  I don’t know why 
it’s not working for you but since you are writing new code now I suggest you 
use the sqlite3_exec() interface instead.  That’s the simplest way to do a 
query.

<http://www.sqlite.org/c3ref/exec.html>

here is an example of code which calls _exec():

<http://www.sqlite.org/quickstart.html>

Simon.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to