SQLite 数据库是否像 android 中的 MySQL 一样支持 MEDIUMTEXT?

Is SQLite database support MEDIUMTEXT like MySQL in android?

我看到 MySQL 支持可以存储大约 16mb 数据的 MEDIUMTEXT,而 LONGTEXT 支持大约 4gb 数据。 SQLite 是否支持 mediumtext ?提前致谢....

SQLite 只有 a single string data type.

documentation 说:

Maximum length of a string or BLOB
The maximum number of bytes in a string or BLOB in SQLite is defined by the preprocessor macro SQLITE_MAX_LENGTH. The default value of this macro is 1 billion (1 thousand million or 1,000,000,000).