Is there type Long in SQLite?

前端 未结 7 705
我在风中等你
我在风中等你 2020-12-23 20:00

I want to create a table with the column type Long instead of Integer. Is it possible?

相关标签:
7条回答
  • 2020-12-23 20:51

    You just define a column with Integer type. SQLite sets the column length to 1,2,4,8 depending on your input.

    0 讨论(0)
提交回复
热议问题