abiramip wrote:
> Hi,
> In the command prompt if i give the following,
> select OID from tablename;
> am able to get the corresponding OID...
> If i use sqlite3_prepare() API    how do i proceed inorder to do the same ?
> 
> Please suggest a procedure to  perform this.

Look at this page:

  http://sqlite.org/capi3ref.html

In particular you'll want to read on sqlite3_step, sqlite3_finalize,
sqlite3_column_count, sqlite3_column_type etc

Alternately, you may want to consider the simpler sqlite3_exec api with
an example at

  http://sqlite.org/quickstart.html

Roger

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to