用于管理H2数据库的前端工具


94

如何使用H2数据库的集成管理前端?

对于诸如创建表,更改表,添加列等操作。


3
请参阅H2网站以获取数据库前端/工具列表。
罗勒·布尔克

1
此问题更合适的位置在Software Recommendations Stack Exchange上。但是在这里,您必须概述“最佳”含义的特定标准。
罗勒·布尔克

Answers:


89

我喜欢的SQuirreL SQL客户端,以及NetBeans的非常有用的 ; 但更多时候,我只是启动内置org.h2.tools.Server浏览器并浏览端口8082:

$ java -cp /opt/h2/bin/h2.jar org.h2.tools.Server-帮助
启动H2控制台(Web-)服务器,TCP和PG服务器。
用法:java org.h2.tools.Server 
不带选项运行时,将启动-tcp,-web,-browser和-pg。
选项区分大小写。支持的选项有:
[-帮助]或[-?]打印选项列表
[-web]使用H2控制台启动Web服务器
[-webAllowOthers]允许其他计算机连接-参见下文
[-webPort]端口(默认值:8082)
[-webSSL]使用加密(HTTPS)连接
[-浏览器]启动浏览器并打开一个页面以连接到Web服务器
[-tcp​​]启动TCP服务器
[-tcp​​AllowOthers]允许其他计算机连接-参见下文
[-tcp​​Port]端口(默认值:9092)
[-tcp​​SSL]使用加密(SSL)连接
[-tcp​​Password]关闭TCP服务器的密码
[-tcp​​Shutdown“”]停止TCP服务器;示例:tcp:// localhost:9094
[-tcp​​ShutdownForce]不要等到所有连接都关闭
[-pg]启动PG服务器
[-pgAllowOthers]允许其他计算机连接-参见下文
[-pgPort]端口(默认值:5435)
[-baseDir] H2数据库的基本目录;对于所有服务器
[-ifExists]只能打开现有的数据库;对于所有服务器
[-trace]打印其他跟踪信息;对于所有服务器

2
在1.4中,您可以使用运行控制台java -jar /opt/h2/bin/h2.jar
大约bluei

3
也考虑一下java -cp /opt/h2/bin/h2.jar org.h2.tools.Shell
垃圾神





7

也有内置的shell客户端,这很方便。

java -cp h2*.jar org.h2.tools.Shell

http://opensource-soa.blogspot.com.au/2009/03/how-to-use-h2-shell.html

$ java -cp h2.jar org.h2.tools.Shell -help
Interactive command line tool to access a database using JDBC.
Usage: java org.h2.tools.Shell <options>
Options are case sensitive. Supported options are:
[-help] or [-?]        Print the list of options
[-url "<url>"]         The database URL (jdbc:h2:...)
[-user <user>]         The user name
[-password <pwd>]      The password
[-driver <class>]      The JDBC driver class to use (not required in most cases)
[-sql "<statements>"]  Execute the SQL statements and exit
[-properties "<dir>"]  Load the server properties from this directory
If special characters don't work as expected, you may need to use
 -Dfile.encoding=UTF-8 (Mac OS X) or CP850 (Windows).
See also http://h2database.com/javadoc/org/h2/tools/Shell.html


1

如果您在春季将其作为嵌入式数据库运行,则在主应用程序运行时,我将使用以下配置来启用内置的Web客户端:

<!-- Run H2 web server within application that will access the same in-memory database -->
<bean id="h2Server" class="org.h2.tools.Server" factory-method="createTcpServer" init-method="start" destroy-method="stop" depends-on="h2WebServer">
    <constructor-arg value="-tcp,-tcpAllowOthers,-tcpPort,9092"/>
</bean>
<bean id="h2WebServer" class="org.h2.tools.Server" factory-method="createWebServer" init-method="start" destroy-method="stop">
    <constructor-arg value="-web,-webAllowOthers,-webPort,8082"/>
</bean>


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.