Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
09b4f932
提交
09b4f932
authored
7月 04, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation.
上级
3f4f0e3f
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
11 行增加
和
2 行删除
+11
-2
changelog.html
h2/src/docsrc/html/changelog.html
+3
-2
tutorial.html
h2/src/docsrc/html/tutorial.html
+8
-0
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
09b4f932
...
@@ -24,7 +24,8 @@ Change Log
...
@@ -24,7 +24,8 @@ Change Log
<a
href=
"http://h2database.com/h2mig_pagestore_addon.jar"
>
http://h2database.com/h2mig_pagestore_addon.jar
</a>
<a
href=
"http://h2database.com/h2mig_pagestore_addon.jar"
>
http://h2database.com/h2mig_pagestore_addon.jar
</a>
</li><li>
The MultiDimension tools was extended with a few helper methods.
</li><li>
The MultiDimension tools was extended with a few helper methods.
The API was unified a bit.
The API was unified a bit.
</li><li>
ODBC: additional connection settings can now be added to the database name.
</li><li>
ODBC: MS Access could not link to a table with a name containing '_'.
</li><li>
ODBC: additional connection settings can now be added to the database name.
Example: ~/test;cipher=xtea. Therefore, encrypted databases are supported.
Example: ~/test;cipher=xtea. Therefore, encrypted databases are supported.
</li><li>
Local temporary tables can now be created without having to commit a transaction
</li><li>
Local temporary tables can now be created without having to commit a transaction
using CREATE LOCAL TEMPORARY TABLE TEMP(ID INT PRIMARY KEY) TRANSACTIONAL.
using CREATE LOCAL TEMPORARY TABLE TEMP(ID INT PRIMARY KEY) TRANSACTIONAL.
...
@@ -36,6 +37,7 @@ Change Log
...
@@ -36,6 +37,7 @@ Change Log
</li><li>
UNION queries where the first query contains a nested query were parsed incorrectly.
</li><li>
UNION queries where the first query contains a nested query were parsed incorrectly.
Example: "select 1 from (select 2 from dual) union select 3 from dual" was parsed as
Example: "select 1 from (select 2 from dual) union select 3 from dual" was parsed as
"select 1 from ((select 2 from dual) union select 3 from dual)". Fixed.
"select 1 from ((select 2 from dual) union select 3 from dual)". Fixed.
</li><li>
Support ALTER SCHEMA name RENAME TO newName (rename schema). (patch from Kerry Sainsbury)
</li></ul>
</li></ul>
<h2>
Version 1.2.138 (2010-06-27)
</h2>
<h2>
Version 1.2.138 (2010-06-27)
</h2>
...
@@ -59,7 +61,6 @@ Change Log
...
@@ -59,7 +61,6 @@ Change Log
</li><li>
Cluster: non-admin users could not connect when one of the cluster node was stopped. Issue 206.
</li><li>
Cluster: non-admin users could not connect when one of the cluster node was stopped. Issue 206.
</li><li>
DROP VIEW now supports the CASCADE and RESTRICT clauses (patch from Kerry Sainsbury)
</li><li>
DROP VIEW now supports the CASCADE and RESTRICT clauses (patch from Kerry Sainsbury)
</li><li>
CREATE VIEW now supports the OR REPLACE clause (patch from Kerry Sainsbury)
</li><li>
CREATE VIEW now supports the OR REPLACE clause (patch from Kerry Sainsbury)
</li><li>
Support ALTER SCHEMA name RENAME TO newName (rename schema). (patch from Kerry Sainsbury)
</li><li>
Build tool: ability to only run one test using the -Dtest=className setting.
</li><li>
Build tool: ability to only run one test using the -Dtest=className setting.
eg: build -Dtest=org.h2.test.db.TestViewDropView test (patch from Kerry Sainsbury).
eg: build -Dtest=org.h2.test.db.TestViewDropView test (patch from Kerry Sainsbury).
</li></ul>
</li></ul>
...
...
h2/src/docsrc/html/tutorial.html
浏览文件 @
09b4f932
...
@@ -36,6 +36,8 @@ Tutorial
...
@@ -36,6 +36,8 @@ Tutorial
Using EclipseLink
</a><br
/>
Using EclipseLink
</a><br
/>
<a
href=
"#using_activemq"
>
<a
href=
"#using_activemq"
>
Using Apache ActiveMQ
</a><br
/>
Using Apache ActiveMQ
</a><br
/>
<a
href=
"#using_netbeans"
>
Using H2 within NetBeans
</a><br
/>
<a
href=
"#web_applications"
>
<a
href=
"#web_applications"
>
Using Databases in Web Applications
</a><br
/>
Using Databases in Web Applications
</a><br
/>
<a
href=
"#csv"
>
<a
href=
"#csv"
>
...
@@ -582,6 +584,12 @@ However, using the MVCC mode will again result in the same problem. Therefore, p
...
@@ -582,6 +584,12 @@ However, using the MVCC mode will again result in the same problem. Therefore, p
Another (more dangerous) solution is to set
<code>
useDatabaseLock
</code>
to false.
Another (more dangerous) solution is to set
<code>
useDatabaseLock
</code>
to false.
</p>
</p>
<h2
id=
"using_netbeans"
>
Using H2 within NetBeans
</h2>
<p>
The project
<a
href=
""
>
H2 Database Engine Support For NetBeans
</a>
allows you to start and stop the H2 server from within the IDE.
</p>
<h2
id=
"web_applications"
>
Using Databases in Web Applications
</h2>
<h2
id=
"web_applications"
>
Using Databases in Web Applications
</h2>
<p>
<p>
There are multiple ways to access a database from within web
There are multiple ways to access a database from within web
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论