h2 database

java -cp h2-1.4.187.jar org.h2.tools.Shell -url jdbc:h2:file:~/.h2/hzhssh -user sa

如果有个数据库的文件名为:hzhssh.h2.db,则数据库的名字即为 hzhssh,而不是hzhssh.h2.db。

帮助:

http://www.h2database.com/html/tutorial.html#command_line_tools

http://www.h2database.com/html/grammar.html

http://www.h2database.com/html/advanced.html

时间: 2024-10-20 05:55:11

h2 database的相关文章

H2 database 行相加-行列转换

create or replace view view_acceptCompanyasselect *  from  (select WARNIGID,max(CASEWHEN(zhtablename='中文表名', '中文表名', null))  field1,max(CASEWHEN(zhtablename='管控类型', '管控类型', null))  field2,max(CASEWHEN(zhtablename='测试中文表名', '测试中文表名', null))  field3 ,m

H2 Database入门

H2 Database做为轻量级的内嵌数据库,功能十分强大,而且运行时只需要一个jar包即可,下表是官网的描述: 更详细的对比见官网页面: http://www.h2database.com/html/features.html#comparison 下面是开发入门步骤: 一.maven中添加依赖项 1 <dependency> 2 <groupId>com.h2database</groupId> 3 <artifactId>h2</artifact

[Spring boot] Integrating with h2 database

In pom.xml add dependency: <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframewo

h2 database url 规范

This database supports multiple connection modes and connection settings. This is achieved using different database URLs. Settings in the URLs are not case sensitive. Topic URL Format and Examples Embedded (local) connection jdbc:h2:[file:][<path>]&

java:如何用代码控制H2 Database启动

1.纯手动start/stop 1 package com.cnblogs.yjmyzz.h2; 2 3 import java.sql.Connection; 4 import java.sql.DriverManager; 5 import java.sql.ResultSet; 6 import java.sql.SQLException; 7 import java.sql.Statement; 8 9 import org.h2.tools.Server; 10 import org.

H2 database的使用

H2最完整的资料下载地址: http://download.csdn.net/detail/yixiaoping/5956595 H2数据库使用 H2数据库介绍 常用的开源数据库:H2,Derby,HSQLDB,MySQL,PostgreSQL.其中H2,HSQLDB类似,十分适合作为嵌入式数据库使用,其它的数据库大部分都需要安装独立的客户端和服务器端.H2的优势:1.h2采用纯Java编写,因此不受平台的限制.2.h2只有一个jar文件,十分适合作为嵌入式数据库试用.3.性能和功能的优势 H2

h2 database 相关资源

http://www.h2database.com/html/download.html 看官方最快捷,最透彻 1.启动一个h2 的console 进入bin : java -jar h2-1.18.jar 会自动用default browser打开一个console 填写本地的test.h2.db的路径,点击test connection,会有提示:test successful

H2数据库攻略

H2是一个开源的嵌入式数据库引擎,采用java语言编写,不受平台的限制,同时H2提供了一个十分方便的web控制台用于操作和管理数据库内容.H2还提供兼容模式,可以兼容一些主流的数据库,因此采用H2作为开发期的数据库非常方便. 一.引入Maven依赖 在maven中定义H2数据库的版本属性 <properties> <h2.version>1.3.172</h2.version></properties> 添加H2依赖 <dependency> &

H2最完整的资料下载地址:

淡泊以明志,宁静以致远 博客园 首页 新随笔 联系 管理 订阅 随笔- 678  文章- 0  评论- 137 H2 database的使用 H2最完整的资料下载地址: http://download.csdn.net/detail/yixiaoping/5956595 H2数据库使用 H2数据库介绍 常用的开源数据库:H2,Derby,HSQLDB,MySQL,PostgreSQL.其中H2,HSQLDB类似,十分适合作为嵌入式数据库使用,其它的数据库大部分都需要安装独立的客户端和服务器端.H