Hi,
Is it possible to directly store a XML/HTML file inside a SQLite database?
I'm writing a program in python which is supposed to parse XML/HTML files and store the values inside the database. However, the fields inside the XML/HTML files may vary and I thought it would be easier to simply store the entire XML/HTML file inside the database and then parse it only when used.
Is this possible with python and SQLite? Or am I approaching this problem from the wrong angle?
Thanks in advance!
EDIT: Could anyone share a code sample on how one would store the file? I understand that it is possible but I'm unsure on how to go about doing it.