user2178855
user2178855

Reputation: 31

How to set Sqlite relative path in Hibernate?

How to set path of sqlite database as relative in hibernate.cfg.xml

<property name="hibernate.connection.url">jdbc:sqlite:/relative path/socomer.db</property>

Upvotes: 3

Views: 240

Answers (1)

taygetos
taygetos

Reputation: 3040

use the dot to set relative path:

<property name="hibernate.connection.url">jdbc:sqlite:./path/socomer.db</property>

Upvotes: 2

Related Questions