PDA

Click to See Complete Forum and Search --> : XML as a relational database


Crunchy Cat
Aug 22nd, 2004, 12:14 PM
Hello,

I got the impression from a few articles online that XML can
be used with ODBC / JDBC just like a regular RDB. Is this
true, and if so how is the performance?

Thanks,

-CC

Jmacp
Aug 22nd, 2004, 03:56 PM
You can pretty much use XML for anything, it is essentially a db. They say its the fastest way to convey information though i haven't seen any benchmarks to confirm this.

ober0330
Aug 23rd, 2004, 07:13 AM
You can use it as a DB. That doesn't mean that you should. It's good at what it is made for: storing data in a very categorized/organized manner. However, it's not designed to be a DBMS (Data Base Management System). It is not meant for storing large numbers of records and it's certainly not built for designing complex data structures with relationships and such. If you're looking for a good database, use something else. That's all I'm trying to say.

Crunchy Cat
Aug 23rd, 2004, 12:33 PM
Jmacp and ober0330, thanks for sharing your knowledge and
giving some guiding advice. Just out of curiosity, are there any
current standards which would allow a single portable DB
to work on any platform?

ober0330
Aug 23rd, 2004, 01:24 PM
MySQL (http://www.mysql.com/)

Although, maybe you should more clearly define your needs.

Crunchy Cat
Aug 23rd, 2004, 01:27 PM
Thanks ober0330. My needs are to have a local database used
by a Java application. The database will be mirroring some data
on an application server (basically a local performance DB
cache).

ober0330
Aug 23rd, 2004, 01:38 PM
Mysql should suit your needs then.

Crunchy Cat
Aug 23rd, 2004, 01:40 PM
Thank you sir!