I have a pre-built database, I used SQLiteMan to populate database that contains short stories or articles, so I have a table structure like this:
Table: texts
id - integer auto increment
title - text
content - blob
The content field contains a paragraph text or strings from a text file I edited from a text editor.
How can I retrieve the contents from the database as text?