This is altogether bad practice. You should always define what fields you want. Using Select * is just asking for trouble. To limit the number of fields that are accessible to a process/user/program, you should use a view. With a view you can of course then use Select * but that's not the point.
Each program should have a defined external view/schema. This decouples programs from the underlying data model (within the limitations of the database view facilities - which are not that brilliant in SQLite). -- View this message in context: http://www.nabble.com/feature-request---field-exclusion-list-in-select-list-tp25639074p25696861.html Sent from the SQLite mailing list archive at Nabble.com. _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users