How can i save xml file in sqlite database...?
I am writing a project where I am required to sa开发者_运维百科ve an entire XML file in a database. So how can I save it? I don't want to save parsed XML only the entire XML file.
Thanks.
The content of an XML file is a text. So use a column of type text and insert the whole content of the file.
精彩评论