TimotheeJeannin / ProviGen

Easily make a ContentProvider from an annotated ContractClass.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Long column type

mecid opened this issue · comments

Please add Long for column type.

Hi @mecid,

From the SQLite documentation on types, there is only five types available (NULL, INTEGER, REAL, TEXT, BLOB). A long value is stored as an 8 byte INTEGER.

See this answer for more details : http://stackoverflow.com/questions/8672473/is-there-type-long-in-android-sql

You're welcome. :)