sqlite中varchar数据类型的最大大小限制是多少?
我是 sqlite 的新手。我想知道sqlite中varchar数据类型的最大大小限制?
有人可以向我推荐一些与此相关的信息吗?我在 sqlite.org 网站上进行了搜索,他们给出了答案:
问:SQLite 中 VARCHAR 的最大大小是多少?
A. SQLite 不强制 VARCHAR 的长度。你可以声明一个 VARCHAR(10),SQLite 会很乐意让你输入 500 其中的人物。它将完整保留所有 500 个字符 - 它 从不截断。
但我想知道 sqlite 中 varchar 数据类型的确切最大大小限制。
I'm new to sqlite. I want to know the maximum size limit of varchar data type in sqlite?
can anybody suggest me some information related to this? I searched on sqlite.org site and they give the answer as:
Q. What is the maximum size of a VARCHAR in SQLite?
A. SQLite does not enforce the length of a VARCHAR. You can declare a VARCHAR(10) and SQLite will be happy to let you put 500
characters in it. And it will keep all 500 characters intact - it
never truncates.
but I want to know the exact max size limit of varchar datatype in sqlite.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 http://www.sqlite.org/limits.html
from http://www.sqlite.org/limits.html