Search code examples
sqlitevarchar

VARCHAR LENGTH?


What is the VARCHAR length in Sqlite ?


Solution

  • Sqlite doesn't place an explicit limit on the length of the VARCHAR, however the maximum length of any string or blob is limited to the maximum length value, which is 1 billion by default.

    You can increase or decrease this limit as well, though. So you're really only limited by the memory you have available.