H2 데이터베이스를 관리하는 프런트 엔드 도구


94

H2 데이터베이스 의 통합 관리 프런트 엔드 를 사용하는 방법은 무엇입니까?

테이블 생성, 테이블 변경, 열 추가 등과 같은 작업의 경우.


3
데이터베이스 프런트 엔드 / 도구 목록은 H2 웹 사이트를 참조하십시오 .
Basil Bourque 2015 년

1
이 질문에 더 적합한 위치는 Software Recommendations Stack Exchange에 있습니다. 그러나 "최고"가 의미하는 바에 대한 구체적인 기준을 설명해야합니다.
Basil Bourque

답변:


89

저는 SQuirreL SQL Client를 좋아 하고 NetBeans매우 유용합니다 . 그러나 더 자주, 나는 내장을 실행 org.h2.tools.Server하고 포트 8082를 검색합니다.

$ java -cp /opt/h2/bin/h2.jar org.h2.tools.Server -help
H2 콘솔 (웹) 서버, TCP 및 PG 서버를 시작합니다.
사용법 : java org.h2.tools.Server 
옵션없이 실행하면 -tcp, -web, -browser 및 -pg가 시작됩니다.
옵션은 대소 문자를 구분합니다. 지원되는 옵션은 다음과 같습니다.
[-help] 또는 [-?] 옵션 목록 인쇄
[-web] H2 콘솔로 웹 서버 시작
[-webAllowOthers] 다른 컴퓨터의 연결 허용-아래 참조
[-webPort] 포트 (기본값 : 8082)
[-webSSL] 암호화 된 (HTTPS) 연결 사용
[-browser] 브라우저를 시작하고 페이지를 열어 웹 서버에 연결합니다.
[-tcp] TCP 서버 시작
[-tcpAllowOthers] 다른 컴퓨터의 연결 허용-아래 참조
[-tcpPort] 포트 (기본값 : 9092)
[-tcpSSL] 암호화 된 (SSL) 연결 사용
[-tcpPassword] TCP 서버를 종료하기위한 암호
[-tcpShutdown ""] TCP 서버를 중지합니다. 예 : tcp : // localhost : 9094
[-tcpShutdownForce] 모든 연결이 닫힐 때까지 기다리지 마십시오.
[-pg] PG 서버 시작
[-pgAllowOthers] 다른 컴퓨터의 연결 허용-아래 참조
[-pgPort] 포트 (기본값 : 5435)
[-baseDir] H2 데이터베이스의 기본 디렉토리. 모든 서버용
[-ifExists] 기존 데이터베이스 만 열 수 있습니다. 모든 서버용
[-trace] 추가 추적 정보를 인쇄합니다. 모든 서버용

2
1.4에서는 java -jar /opt/h2/bin/h2.jar.
approxiblue

3
또한 고려하십시오 java -cp /opt/h2/bin/h2.jar org.h2.tools.Shell.
trashgod



12

내가 제안하고 싶은 DBEAVER을 .IT가 일식을 기반으로 지원하는 더 나은 데이터를 처리하는



7

편리한 쉘 클라이언트도 내장되어 있습니다.

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

3

나는 그것을 사용하지 않았지만 RazorSQL 꽤 좋아 보인다 .


4
그리고 그것은 무료가 아닙니다. "다운로드는 처음 사용 후 30 일 후에 만료됩니다. 만료 후 RazorSQL을 계속 사용하려면 등록 코드 / 일련 번호를 구입해야합니다."
btpka3

1

봄에 임베디드 데이터베이스로 실행하는 경우 다음 구성을 사용하여 기본 앱이 실행될 때 내장 웹 클라이언트를 활성화합니다.

<!-- 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>


당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.