Игор
Игор

Reputation: 365

portable java app with built-in oracle database, instead of whole oracle server needed for database usage

How can i make my app portable and independent( like sort of local oracle database system ) so every user has its own independent database, and with need only to install that small app that i made for him to use it... without need to install whole oracle database server. p.s sorry for my english guys i hope you understood me.

recap:

  1. i want my users to install only app, and not whole oracle database system.
  2. i want my databsae to be local, and not global(remote);

at the moment i use oracle database server.. i suppose i will have to transfer my data or to repack it somehow , to achieve that effect... any suggestions?

Upvotes: 1

Views: 2459

Answers (1)

quaylar
quaylar

Reputation: 2635

In case you are not fixed on Oracle there are numerous possibilities:

Check out this SO-Post for a collection: Alternatives to SQLite?

In addition i would like to throw in H2DB

Upvotes: 1

Related Questions