Best approach for a database of long strings
        Posted  
        
            by 
                gsingh2011
            
        on Programmers
        
        See other posts from Programmers
        
            or by gsingh2011
        
        
        
        Published on 2012-03-23T01:05:40Z
        Indexed on 
            2012/03/23
            5:38 UTC
        
        
        Read the original article
        Hit count: 546
        
database
|database-design
I need to store questions and answers in a database. The questions will be one to two sentences, but the answers will be long, at least a paragraph, likely more.
The only way I know about to do this right now is an SQL database. However, I don't feel like this is a good solution because as far as I've seen, these databases aren't used for data of this type or size. Is this the correct way to go or is there a better way to store this data? Is there a better way than storing raw strings?
© Programmers or respective owner