Subject | How can I enter a BLOB SUB_TYPE TEXT of more than 32K |
---|---|
Author | Jean-Louis Dehoux |
Post date | 2006-06-15T21:22:07Z |
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
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