I want to connect to my Database using XML api. I want to map my database tables, rows columns as xml elements(insert xml elements to db /get the record from db to xml). Have any java api can do this? THX....
Flowertang -
You should know that using XML to connect with the database will increase the CPU load on the server by quite a bit, since XML is not the native language of the (relational) database, it has to be converted by the database engine before it can do any real work.
Such a load is probably better placed on an application server, that translates your XML into your database's native language (OCI for Oracle, TDI for MS SQLServer, etc).
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.