guazz
guazz

Reputation: 21

Database Storing long Text Strings

What's the best method to store long text string (> 5000 chars)?

Upvotes: 1

Views: 1534

Answers (1)

yamspog
yamspog

Reputation: 18343

It depends on the database. With SQL server, you can use varchar(MAX) or text.

http://www.teratrax.com/articles/varchar_max.html explains about different storage types.

and of course, good ol' dependable msdn...

http://msdn.microsoft.com/en-us/library/ms176089.aspx

Upvotes: 1

Related Questions