deep
01-12-2004, 07:09 PM
I was trying to save texts that my users want to send in. I was planing on saving them in my SQL database but i have a problem... this is my table:
CREATE TABLE text (
edTxt CHAR(255)
);
That only allowes my users to add text with only 255 characters... how do I enable them to add texts that are maybe thousands of characters (no limit)??
Thanks!
CREATE TABLE text (
edTxt CHAR(255)
);
That only allowes my users to add text with only 255 characters... how do I enable them to add texts that are maybe thousands of characters (no limit)??
Thanks!