Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the simplest Java ORM supporting Sqlite?

Tags:

java

sqlite

orm

What is the ORM that can bound to a Java application in the least possible time, given its performance is not important?

like image 890
htf Avatar asked Jun 04 '10 12:06

htf


4 Answers

This is self-marketing but my ORMLite package has native support for Sqlite – as well as MySQL, Postgres, Microsoft SQL Server, H2, Derby, and HSQLDB. It uses annotations to configure the persisted classes and is simple to get up to speed.

Here is the online docs on how to get started with the package:

I have experience with the org.xerial.sqlite-jdbc JDBC driver which seems to work very well.

like image 171
Gray Avatar answered Oct 02 '22 23:10

Gray


SQLite is fully supported by jOOQ.

like image 33
Lukas Eder Avatar answered Oct 02 '22 22:10

Lukas Eder


Sormula works with any relational database since it creates standard SQL. Sqlite test configuration and jdbc driver are included in the test suites.

like image 23
Jeff Miller Avatar answered Oct 03 '22 00:10

Jeff Miller


Here is a demo project for Hibernate SQLite integration. EclipseLInk JPA should also work. EclipseLink is lighter than Hibernate, but Hibernate is better documented and more mature.

like image 28
Timo Westkämper Avatar answered Oct 03 '22 00:10

Timo Westkämper