I'm making a new web app using Rails, and was wondering, what's the difference between string and text? And when should each be used?
| ||||
|
feedback
|
|
The difference relies in how the symbol is converted into its respective column type in query language.
When should each be used? As a general rule of thumb, use | |||
|
feedback
|
|
If you are using postgres use text wherever you can, unless you have a size constraint since there is no performance penalty for text vs varchar
| |||
|
feedback
|
|
String translates to "Varchar" in your database, while text translates to "text". A varchar can contain far less items, a text can be of (almost) any length. For an in-depth analysis with good references check http://www.pythian.com/news/7129/text-vs-varchar/ | |||
|
feedback
|