Database choices

Posted by flobadob on Stack Overflow See other posts from Stack Overflow or by flobadob
Published on 2010-05-12T13:57:42Z Indexed on 2010/05/12 14:24 UTC
Read the original article Hit count: 201

I have a prickly design issue regarding the choice of database technologies to use for a group of new applications. The final suite of applications would have the following database requirements...

Central databases (more than one database) using mysql (myst be mysql due to justhost.com).

An application to be written which accesses the multiple mysql databases on the web host. This application will also write to local serverless database (sqlite/firebird/vistadb/whatever).

Different flavors of this application will be created for windows (.NET), windows mobile, android if possible, iphone if possible.

So, the design task is to minimise the quantity of code to achieve this. This is going to be tricky since the languages used are already c# / java (android) and objc (iphone). Not too worried about that, but can the work required to implement the various database access layers be minimised?

The serverless database will hold similar data to the mysql server, so some kind of inheritance in the DAL would be useful.

Looking at hibernate/nhibernate and there is linq to whatever. So many choices!

© Stack Overflow or respective owner

Related posts about database-design

Related posts about nhibernate