XML/MySQL: Storing complete XML in MySQL and performing CRUD operations -


Is it possible to store the whole XML file in MySQL DB and to conduct CRUED on the XML data contained in MySQL?

Scenario: I am getting an XML file that contains product related information such as product_id, product_spec, product_price and many more I have to store all this details in the MySQL database and whenever a user enters, that particular The product list will select for the product and their selection is populated based on the shopping cart, i.e., the user's choice is to obtain relevant data for the product based on the shopping cart. For, MySQL is read operation on the DB, as a separate XML file which I get from 3rd party is huge because there are millions of products with all relevant details.

If it is possible, what are the ways of doing this?

I appreciate the guidance for very large XML files, I think what you want is a streaming parser, as it is based on a DOM.


Comments

Popular posts from this blog

asp.net - Javascript/DOM Why is does my form not support submit()? -

sockets - Delphi: TTcpServer, connection reset when reading -

javascript - Classic ASP "ExecuteGlobal" statement acting differently on two servers -