views:

24

answers:

1

I want applications to share certain database data. I want one application to retrieve and display certain table views of data produced by another application. Do you know of any open source technologies that I can use for such a distributed solution?

+1  A: 

It sounds like you just need an open source RDBMS (of which there are a number; e.g. MySQL, Postgres, Derby, Firebird, etc) and matching JDBC drivers.

Stephen C