Ralf Junker <[EMAIL PROTECTED]> writes:

> Drawbacks on sqlite3_column_rowid?
>
> I can not see any negatives on sqlite3_column_rowid. 

What does it do with queries that are pulling data from multiple tables?  How
about computed column data?

Consider these queries:

  SELECT a.c2, b.c3 FROM a, b WHERE a.c1 = b.c1;

  SELECT c1 + c2 FROM a;

Derrell

Reply via email to