I'm only allow to store around 250 characters in db column. When I try to add large string it automatically omit the extra character. The type I used in scaffold is string. How can I store large strings in db. I'm using MySQL as db.

link|improve this question

if you are only allowed 250 characters then you are out of luck. – Ali Mar 9 '11 at 11:05
@Ali: check @Dan's answer. It solves my problem. – Harry Joy Mar 9 '11 at 11:28
feedback

2 Answers

up vote 1 down vote accepted

Instead of using :string as your column type, use :text - it will give you much more space to store your string.

link|improve this answer
Thnx man changing it to :text works fine. – Harry Joy Mar 9 '11 at 11:27
feedback

use data type "text" instead of "string"

CHAR( ) : A fixed section from 0 to 255 characters long.

VARCHAR( ): A variable section from 0 to 255 characters long.

TINYTEXT: A string with a maximum length of 255 characters.

TEXT: A string with a maximum length of 65535 characters.

BLOB: A string with a maximum length of 65535 characters.

MEDIUMTEXT: A string with a maximum length of 16777215 characters.

MEDIUMBLOB: A string with a maximum length of 16777215 characters.

LONGTEXT: A string with a maximum length of 4294967295 characters.

LONGBLOB: A string with a maximum length of 4294967295 characters.

link|improve this answer
As you are late in suggesting and I have accepted @dan's answer. I can not accept your answer. But +1 for the information. :-) – Harry Joy Mar 9 '11 at 12:00
hmm thanks for the point harry – HeartDisk Mar 9 '11 at 12:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.