Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. db.default.url="jdbc:h2:file:data/db"
  2.  
  3. Caused by: org.h2.jdbc.JdbcSQLException: A file path that is implicitly
  4. relative to the current working directory is not allowed in the database
  5. URL "jdbc:h2:file:data/db". Use an absolute path, ~/name, ./name, or the
  6. baseDir setting instead. [90011-187]
  7. at org.h2.message.DbException.getJdbcSQLException(DbException.java:345)
  8. at org.h2.message.DbException.get(DbException.java:179)
  9. ...
  10.  
  11. db.default.url="jdbc:h2:file:/Users/foo/data/db"
  12.  
  13. db.default.url="jdbc:h2:~/data/db"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement