i am building a site, that includes the user submitting comments. Now, want to save the different comments.. i read a bit about Linq to SQL and ADO.. they all talk about storing small bits of information like names, emails, passwords etc. But whats the most efficient way to save messages (which will be incorporated to a page like in youtube) at the end?
Share
I think comments on a webpage still count as “small bits”. Just make sure your database field has enough space (
nvarchar(MAX)if supported, otherwisetextorntext, depending on your database of choice)I don’t think you need to start considering other methods of accessing data unless you have dozens of kilobytes of data per object, or a very large number of objects per page.