H2 설치

1164 단어 설치하다.
H2 데이터베이스는 매우 작아서 처음 접했을 때 홈페이지에서exe설치 파일을 다운로드한 후에 설치한 후에 일부 파일이 있는데 그 중에서bin디렉터리의 네 개의 파일이 가장 중요하다. h2를 두 번 클릭하면 된다.bat는 콘솔에 H2 콘솔이 나타나고 브라우저에 H2의 웹 콘솔을 엽니다. 첨부 파일과 같습니다.직접 로그인하면 자동으로 데이터베이스 테스트를 만들고 다른 데이터베이스를 만들려면 jdbc:h2:~/DBName에서 DBName을 설정하면 됩니다.
create table t (id int primary key,name varchar(12));

insert into t values(10,'    123'),(20,'english123')

select * from t

위의 세 문장을 실행해서 보십시오.
H2의 데이터베이스 파일은 마지막으로 C:\Documents and Settings\현재 사용자라는 디렉터리에 놓여 있으며 주로 세 개의 파일test가 있습니다.h2.db test.lock.db .h2.server.properties 데이터베이스가 닫힌 후test가 없습니다.lock.db 복사는 테스트만 복사합니다.h2.db면 됩니다.이렇게 이식하면 매우 편리하다.
테스트:h2-1.3.162jar
public static void main(String[] a) throws Exception {
		Class.forName("org.h2.Driver");
		Connection conn = DriverManager.getConnection("jdbc:h2:~/test", "sa","");
		//jdbc:h2:tcp://localhost/~/test 
		//jdbc:h2:tcp://localhost/~/test    insert into t values(1,' 123'),(2,'123');
		conn.close();
		System.out.println("OK");
	}

좋은 웹페이지 즐겨찾기