本文介绍了SQLite3整数最大值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


  1. sqlite3中数据类型INTEGER的最大值是多少?

  2. 如何在数据库中存储IP地址?

  3. 附加了什么?

  4. 如何使用sql ddl创建属于特定数据库的表?

  5. 这个错误是什么?

  1. what is the maximum value of data type INTEGER in sqlite3 ?
  2. How do you store ip address in database ?
  3. What is attached ?
  4. How to create table which belongs to a specific database using sql ddl?
  5. What is this error about ?






  1. sqlite3文本数据类型是否支持unicode?
    谢谢。


推荐答案


  1. 看看最大值为2 ^ 63-1 = 9223372036854775807

  2. 我认为你应该使用varchar



  3. 可能有所帮助

  1. Look at http://www.sqlite.org/datatype3.html Maximum is 2^63-1 = 9223372036854775807
  2. I would think you should use a varchar
  3. http://www.sqlite.org/lang_attach.html
  4. http://www.sqlite.org/lang_createtable.html
  5. might be of help SQLite 'no such table' error

一般来看看

这篇关于SQLite3整数最大值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-22 14:36
查看更多