Can anyone please tell me the LIST OF DATATYPES in SQLITE supporting ANDROID.
I want to confirm about TIME and DATE datatypes.
First of all check the Sqlite3 version for each android API version: https://stackoverflow.com/a/4377116/737636
I don't think that this is the full list of versions and I think that also OEM can change the SQLite's version installed inside.
Anyway, if you take a quick look you can see that the base version is 3.x
This is the list of supported datatypes by SQLite3 (the same used inside android): http://www.sqlite.org/datatype3.html
and here you are :)