Re: [sqlite] How to get WHERE condition in sqlite?

2009-06-11 Thread Igor Tandetnik
Branko Zebec wrote: > Eample: select * from table1 where id=2 and name='Mitja'; > > I give from vdbe: > > - sqlite3_column_count(pVM); > > - sqlite3_column_name(pVM, i); > > but how can I get where condition? You yourself supplied the SQL statement, so you already know the

[sqlite] How to get WHERE condition in sqlite?

2009-06-11 Thread Branko Zebec
Hello, Eample: select * from table1 where id=2 and name='Mitja'; I give from vdbe: - sqlite3_column_count(pVM); - sqlite3_column_name(pVM, i); but how can I get where condition? It is also parsed and interpreted in some structures? I need this datas for another