Android ContentProvider on SQLite tables without the _id column
Posted in english, programming on Apr 10th, 2009
Very often I found on the web ContentProvider examples based on a SQLite table that describes, as a constraint, to have a column named _id to be used as primary key. Also the official Android Dev Guide introducing in Creating a Content Provider tells to
Be sure to include an integer column named “_id” (with [...]

