-- -- Create a table with an xml field of type text -- -- Inserting data into the table must be done with -- the accompanying program upload.py -- drop table xml if exists; create table xml ( docid int primary key, xmldoc text) character set utf8;