本文介绍了SQLite3整数最大值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
- sqlite3中数据类型INTEGER的最大值是多少?
- 如何在数据库中存储IP地址?
- 附加了什么?
- 如何使用sql ddl创建属于特定数据库的表?
- 这个错误是什么?
- what is the maximum value of data type INTEGER in sqlite3 ?
- How do you store ip address in database ?
- What is attached ?
- How to create table which belongs to a specific database using sql ddl?
- What is this error about ?
- sqlite3文本数据类型是否支持unicode?
谢谢。
推荐答案
- 看看最大值为2 ^ 63-1 = 9223372036854775807
- 我认为你应该使用varchar
- 可能有所帮助
- Look at http://www.sqlite.org/datatype3.html Maximum is 2^63-1 = 9223372036854775807
- I would think you should use a varchar
- http://www.sqlite.org/lang_attach.html
- http://www.sqlite.org/lang_createtable.html
- might be of help SQLite 'no such table' error
一般来看看
这篇关于SQLite3整数最大值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!