Reputation: 31
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
Reputation: 3040
use the dot to set relative path:
<property name="hibernate.connection.url">jdbc:sqlite:./path/socomer.db</property>
Upvotes: 2