On Nov 19, 2004, at 5:38 PM, Tito Ciuro wrote:
Well, it didn't really stripped it. It seems to have reordered the columns. Also, in version 2 (I don't know if it's still the case), if you omitted the ROWID in the CREATE TABLE statement, this column would still be created, but if would be invisible. In other words, you would not be able to access ROWID's value.
Yes you would. While it is true that "SELECT * FROM blah" wouldn't select the ROWID column, you can do "SELECT ROWID,* FROM blah". And you shouldn't really being using '*' anyway.

