Results 1 to 3 of 3
Thread: XML files and JDBC driver.
- 08-29-2012, 12:27 PM #1
Member
- Join Date
- Aug 2012
- Posts
- 1
- Rep Power
- 0
XML files and JDBC driver.
Hello guys !
I have a bit of situation on which i really can't find any answer on google
so i'm turning to you guys... so here it is:
I would like to open XML files (.xml) on computer with a JDBC driver (instead of new File() function). So actually i want same functionality as Derby Enbedded Driver does, but instead of opening .db files i want to open .xml files. I'm using XML files for saving data like databases are - with tables, schemas and stuff. I can write something like my own JDBC driver, or extend from some driver that already does something like that.. I would like to make something, so i could connect like this:
Once i'm connected with driver, i would also like to use SQL statements for my XML file database.Java Code:String url = "jdbc:mydriver:D:\\username\nameOfFile.xml"; Class.forName ("com.mydriver.jdbc.Driver").newInstance (); conn = DriverManager.getConnection (url); System.out.println ("Database connection established");
I hope i was clear enough so you have idea what i'm trying to achieve here.
Any tips, help would be much appreciated !
greetz,
alkic1
- 08-29-2012, 01:42 PM #2
Moderator
- Join Date
- Apr 2009
- Posts
- 10,481
- Rep Power
- 16
Re: XML files and JDBC driver.
A quick google gives two that are both licensed (though with a trial version).
StelsXML and HXTT XML.
I did find Ashpool though.
It looks dead to me, it's no longer being hosted at sourceforge (bar the old stuff) and the link to the new host doesn't go anywhere for me, but the stuff still on sourceforge might give you something to work off?Please do not ask for code as refusal often offends.
- 08-29-2012, 03:34 PM #3
Moderator
- Join Date
- Apr 2009
- Posts
- 10,481
- Rep Power
- 16
Re: XML files and JDBC driver.
Crossposted at OTN.
https://forums.oracle.com/forums/thr...33142&tstart=0Please do not ask for code as refusal often offends.
Similar Threads
-
Cannot load JDBC driver class 'com.mysql.jdbc.Driver'
By santde in forum JDBCReplies: 0Last Post: 03-03-2012, 01:01 AM -
JDBC Problem - com.mysql.jdbc.Driver
By icu222much in forum Advanced JavaReplies: 5Last Post: 11-22-2011, 04:54 PM -
JDBC Driver for SQLite 2.1
By odvn in forum Advanced JavaReplies: 2Last Post: 08-11-2011, 01:40 PM -
JDBC Driver
By Ursula in forum New To JavaReplies: 6Last Post: 08-23-2010, 05:41 PM -
Help with JDBC driver
By Daniel in forum JDBCReplies: 2Last Post: 07-03-2007, 08:16 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks