ahmetb / orman

lightweight and minimalist ORM for Java/Android. works with SQLite & MySQL. (not actively maintained)
Other
249 stars 47 forks source link

Research for Pure Java Standalone Java DBMS Adapter #10

Closed ahmetb closed 8 years ago

ahmetb commented 13 years ago

Since we are aiming easy integration and use, especially for Java desktop programs shipping, we can not setup a MySQL or a similar daemon-running DBMS.

For that we planned to write adapters for SQLite however there is no pure Java adapter for that and even sqlite4java requires native *.dll, *.so, *.jnilib binaries. Maybe we can embed them into sqlite-build of ORMAN distribution however that would be inefficient and large anyway.

I found out that H2 db might be useful. However it is about ~1 mb and has lots of features. We're looking for a very very simple and small SQL-interpreting pure Java database.

Just an idea to improve usability of framework.

ahmetb commented 8 years ago

meh