Subject How can I enter a BLOB SUB_TYPE TEXT of more than 32K
Author Jean-Louis Dehoux
I created a test database with 1 table and 2 columns:
CREATE TABLE Test(ID INTEGER, TestBlob BLOB SUB_TYPE TEXT)
I can insert records into it as long as my testblob is shorter than
30000 characters.
INSERT INTO TEST (ID, TestBlob) VALUES (1, '<long string>')
If the string is greater than that, the server seems to crash.
What am I doing wrong?

Jean-Louis