Ozan
Ozan

Reputation: 1201

Java sql like sqlite

I created an android app. and I used sqlite to keep my small files. When I use sqlite, I could create tables, and did operations with just a java class. Now I am creating pure java application, and I need small database that can be created with programmatically on java application like android sqlite. Is there any java database like sqlite ?

Upvotes: 0

Views: 81

Answers (1)

Gregor Raýman
Gregor Raýman

Reputation: 3081

You can still use Sqlite, also you could use H2 which has similar features.

Upvotes: 1

Related Questions