-
hi i"m using sqlite browser and i want to know if the CLOB type is supported https://docs.oracle.com/javadb/10.10.1.2/ref/rrefclob.html If I make a new table, I cant choose it. See image. Is CLOB supported by sqlite and is it just forgotten in the tool? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
If it's not supported, what data type should I use that gives me the same functionality as CLOB? |
Beta Was this translation helpful? Give feedback.
-
The text data type supports Unicode, and up to 2147483647 bytes. For ASCII that's characters, but half that for Unicode. |
Beta Was this translation helpful? Give feedback.
-
So TEXT and BLOB have the same maximum bytes as CLOB? |
Beta Was this translation helpful? Give feedback.
I understand that the maximum byte size is slightly larger in SQLite.