前端工具来pipe理H2数据库
如何使用H2数据库的集成pipe理前端?
对于诸如create table,alter table,add column等操作。
我喜欢SQuirreL SQL Client ,即使没有漂亮的插件 , NetBeans也是有用的,在这里讨论; 但更多的时候,我只是启动内置的org.h2.tools.Server
并浏览端口8082:
$ java -cp /opt/h2/bin/h2.jar org.h2.tools.Server -help 启动H2 Console(Web-)服务器,TCP和PG服务器。 用法:java org.h2.tools.Server 当没有选项运行时,-tcp,-web,-browser和-pg被启动。 选项区分大小写。 支持的选项有: [-help]或[ - ?]打印选项列表 [-web]用H2控制台启动Web服务器 [-webAllowOthers]允许其他计算机连接 - 请参阅下文 [-webPort]端口(默认:8082) [-webSSL]使用encryption(HTTPS)连接 [-browser]启动浏览器并打开一个页面连接到Web服务器 [-tcp]启动TCP服务器 [-tcpAllowOthers]允许其他电脑连接 - 见下文 [-tcpPort]端口(默认:9092) [-tcpSSL]使用encryption(SSL)连接 [-tcpPassword]closuresTCP服务器的密码 [-tcpShutdown“”]停止TCP服务器; 例如:tcp:// localhost:9094 [-tcpShutdownForce]不要等到所有连接都closures [-pg]启动PG服务器 [-pgAllowOthers]允许其他计算机连接 - 请参阅下文 [-pgPort]端口(默认:5435) [-baseDir] H2数据库的基础目录; 为所有服务器 [-ifExists]只能打开现有的数据库; 为所有服务器 [-trace]打印附加的跟踪信息; 为所有服务器
H2控制台应用程序如何?
我使用sql-workbench与H2和任何其他DBMS的工作,我必须处理,这让我微笑:-)
我想build议DBEAVER。它基于eclipse,并支持更好的数据处理
在这里find一个讨论
引用来自Thomas Mueller:
http://www.dbsolo.com/
http://www.minq.se/products/dbvis/
http://executequery.org/index.jsp
http://sqldeveloper.solyp.com/index.html
http://sql-workbench.net/index.html
http://www.squirrelsql.org/
还有一个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
我没有使用它,但RazorSQL 看起来不错。
我会build议Jetbrain的IDE:DataGrip https://www.jetbrains.com/datagrip/
如果您在春季将其作为embedded式数据库运行,则使用以下configuration在主应用运行时启用内置的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>