Soler Mani
Soler Mani

Reputation: 309

Using a local database for java application

I am currently undergoing a project which requires a database. So far uptil now I have been using a sql localhost database, I was wondering if there was an alternative to this.

Similar to micrsoft access database where I could read from the local database file instead?

Upvotes: 0

Views: 1425

Answers (2)

duffymo
duffymo

Reputation: 308938

You could use Hypersonic or Derby; the latter is part of the JDK now. SQLite is another possibility.

Upvotes: 1

user785262
user785262

Reputation:

It sounds like you are talking about an embedded database.

Take a look at: http://www.h2database.com/html/main.html

Upvotes: 2

Related Questions