管理 H2 数据库的前端工具 [关闭]
Posted
技术标签:
【中文标题】管理 H2 数据库的前端工具 [关闭]【英文标题】:Frontend tool to manage H2 database [closed] 【发布时间】:2010-05-03 20:11:29 【问题描述】:H2 database的综合管理前端如何使用?
用于创建表、更改表、添加列等操作。
【问题讨论】:
查看 H2 网站以获取 Database Frontends / Tools 的列表。 这个问题更合适的地方是Software Recommendations Stack Exchange。但是,您必须在此处概述“最佳”的具体标准。 参见***:Comparison of database tools 【参考方案1】:我喜欢SQuirreL SQL Client,而NetBeans就是very useful;但更多时候,我只是启动内置的org.h2.tools.Server
并浏览端口 8082:
【讨论】:
在 1.4 中,您使用java -jar /opt/h2/bin/h2.jar
运行控制台。
也可以考虑java -cp /opt/h2/bin/h2.jar org.h2.tools.Shell
。【参考方案2】:
H2 console application 怎么样?
【讨论】:
+0 例如java -cp h2*.jar org.h2.tools.Console
控制台应用程序很棒,可以通过http访问:localhost:8082
在eclipse下(如果你有H2依赖,例如通过maven)打开类org.h2.tools.Console
然后右键“作为Java应用程序运行”【参考方案3】:
我使用sql-workbench 处理 H2 和我必须处理的任何其他 DBMS,这让我微笑 :-)
【讨论】:
我将它与德比一起使用 它需要在您的系统中安装 32 位 Java【参考方案4】:我想建议DBEAVER。它基于eclipse,支持更好的数据处理
【讨论】:
【参考方案5】:找到一个讨论here
引用 Thomas Mueller 的话:http://www.dbsolo.com/http://www.minq.se/products/dbvis/http://executequery.org/index.jsphttp://sqldeveloper.solyp.com/index.htmlhttp://sql-workbench.net/index.htmlhttp://www.squirrelsql.org/
【讨论】:
【参考方案6】:还内置了一个方便的 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
【讨论】:
【参考方案7】:我没用过,不过RazorSQLlooks还不错。
【讨论】:
而且它不是免费的。 "第一次使用30天后下载过期。过期后必须购买注册码/序列号才能继续使用RazorSQL。"【参考方案8】:如果您在 spring 中将其作为嵌入式数据库运行,我使用以下配置在主应用程序运行时启用内置 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>
【讨论】:
【参考方案9】:我经常使用 DbVisualizer 进行 H2-db 管理。
有一个免费版本:
https://www.dbvis.com/download/
【讨论】:
【参考方案10】:我建议使用 Jetbrain 的 IDE:DataGrip https://www.jetbrains.com/datagrip/
【讨论】:
它不是免费的,有 30 天试用期以上是关于管理 H2 数据库的前端工具 [关闭]的主要内容,如果未能解决你的问题,请参考以下文章