V
V
Vladimir2015-12-23 16:54:53
Java
Vladimir, 2015-12-23 16:54:53

What ORM for Java does sqlite support out of the box?

Can you please tell me if there is an ORM for 5 java that support sqlite and do not require jdbc drivers?
There is ORMLite, but from the documentation it is not at all clear whether it needs jdbc drivers or not.
Upd. Based on the results of the search, I formed the requirements for the driver or wrapper
1) Works under JVM 1.5
2) PureJava

Answer the question

In order to leave comments, you need to log in

1 answer(s)
N
nirvimel, 2015-12-23
@nirvimel

ORM and driver (DBMS client) are somewhat different things and have different tasks. ORMs (with proper architecture) do not integrate drivers. Support for a particular DBMS from the ORM side is limited to support for specific features of the SQL syntax and specific features of a particular DBMS.
The presence of the drivers themselves is required for most ORMs.
If the use of a JDBC driver is unacceptable for some reason, then the option remains - to abandon the full-fledged ORM and use alternative clients (not JDBC-compatible), such as sqlite4java .

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question