Is there any way to Access database from java using XML. I dont want to fire queries from my java code.I came to know about MLIP(Message Level Interface Port), but not much is available about it on internet.
Also got one link
http://docs.oracle.com/cd/B28359_01/appdev.111/b28369/xdb01int.htm#g1054540
But not getting clarity.My application is using jsp and servlets with MVC architecture and cant migrate it to framework like struts and hibernate.
I’m not sure, but I think MyBatis (formerly known as iBatis) is what is you looking for. It is a framework which eases accessing databases by extenalizing SQL queries in XML files and not Java code. So as far as your queries parameters and output are the same, you can manipulate manipulate them without need to change your Java code, or even recompiling it.