what are Datatypes in SQLite supporting android

前端 未结 3 1514
栀梦
栀梦 2021-02-01 12:20

Can anyone please tell me the LIST OF DATATYPES in SQLITE supporting ANDROID.

I want to confirm about TIME and DATE datatypes.

3条回答
  •  攒了一身酷
    2021-02-01 13:03

    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 :)

提交回复
热议问题