Reputation: 309
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
Reputation: 308938
You could use Hypersonic or Derby; the latter is part of the JDK now. SQLite is another possibility.
Upvotes: 1
Reputation:
It sounds like you are talking about an embedded database.
Take a look at: http://www.h2database.com/html/main.html
Upvotes: 2