String storage size in sqlite -
after using lots of sql server
, sql server compact
, have started use sqlite
. i'm creating tables in sqlite , have noticed there doesn't seem need input string length limit when defining string columns. in sql server
255-character string datatype defined like: varchar(255)
. in sql server compact
defined like: nvarchar(255)
.
however, in sqlite
, appears column datatype can defined text
, without inputting size limit. there way define size limit in sqlite? or not necessary?
there managable string or blob limit in sqlite. default 10^9 bytes. see documentation btw don't need specify on column declaration anyway.
Comments
Post a Comment