使用 Datagrip 客户端连接到 H2 数据库
Connect to H2 database using Datagrip client
从 Datagrip 客户端连接到本地 h2 数据库失败并出现以下错误
A file path that is implicitly relative to the current working
directory is not allowed in the database URL
"jdbc:h2:file:localhost:8082/test". Use an absolute path, ~/name,
./name, or the baseDir setting instead.
数据库文件存储在哪里?http://www.h2database.com/html/faq.html 中的 部分帮助我配置和连接。
DB URL 例如:jdbc:h2:file:C:/db-workspace/h2/data/test
将数据源连接类型更改为嵌入式并指定数据库文件的路径。
有关其他选项,请阅读 H2 database URL overview
从 Datagrip 客户端连接到本地 h2 数据库失败并出现以下错误
A file path that is implicitly relative to the current working directory is not allowed in the database URL "jdbc:h2:file:localhost:8082/test". Use an absolute path, ~/name, ./name, or the baseDir setting instead.
数据库文件存储在哪里?http://www.h2database.com/html/faq.html 中的 部分帮助我配置和连接。
DB URL 例如:jdbc:h2:file:C:/db-workspace/h2/data/test
将数据源连接类型更改为嵌入式并指定数据库文件的路径。
有关其他选项,请阅读 H2 database URL overview