[Solved] VARCHAR LENGTH? [closed]


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.

0

solved VARCHAR LENGTH? [closed]