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 
condition.

> It is also parsed and interpreted
> in some structures?

Well, it's embedded in the code of the virtual machine. Run your 
statement prefixed with EXPLAIN to see what that looks like.

Igor Tandetnik 



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

Reply via email to