Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
e80d08d5
提交
e80d08d5
authored
3月 14, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
prepare release
上级
09d38404
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
36 行增加
和
38 行删除
+36
-38
changelog.html
h2/src/docsrc/html/changelog.html
+5
-1
download.html
h2/src/docsrc/html/download.html
+1
-1
mainWeb.html
h2/src/docsrc/html/mainWeb.html
+2
-2
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+28
-34
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
e80d08d5
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
-
</li></ul>
<h2>
Version 1.1.109 (2009-03-14)
</h2>
<ul><li>
The optimization for IN(...) is now only used if comparing a column with an index.
</li><li>
User defined functions can now be deterministic (see CREATE ALIAS documentation).
</li><li>
Multiple nested queries in the FROM clause with parameters did not always work.
...
...
@@ -25,7 +29,7 @@ Change Log
Now, the text is parsed as a hex as when converting VARCHAR.
</li><li>
New experimental NIO storage mechanism with both FileChannel and
memory mapped files. To use it, use the file name prefix nio: or nioMapped:
as in jdbc:h2:nio:~/test. So far it looks like NIO storage is faster Mac OS
as in jdbc:h2:nio:~/test. So far it looks like NIO storage is faster
on
Mac OS
but slower on some Windows systems. Thanks a lot to Jan Kotek for the patch!
</li><li>
The functions BITOR, BITAND, BITXOR, and MOD now accept
and return BIGINT instead of INT.
...
...
h2/src/docsrc/html/download.html
浏览文件 @
e80d08d5
...
...
@@ -19,7 +19,7 @@ Downloads
<h1>
Downloads
</h1>
<h3>
Version ${version} (${versionDate}
, Beta
)
</h3>
<h3>
Version ${version} (${versionDate})
</h3>
<p>
<a
href=
"http://www.h2database.com/h2-setup-${versionDate}.exe"
>
Windows Installer
</a><br
/>
<a
href=
"http://www.h2database.com/h2-${versionDate}.zip"
>
Platform-Independent Zip
</a><br
/>
...
...
h2/src/docsrc/html/mainWeb.html
浏览文件 @
e80d08d5
...
...
@@ -32,7 +32,7 @@ Welcome to H2, the Java SQL database. The main feature of H2 are:
<tr><td
style=
"border: 0px; background-color: #eee;"
>
<table
style=
"border: 0px; margin: 0px 7px 12px 7px;"
>
<tr><td
style=
"border: 0px; background-color: #eee;"
colspan=
"2"
>
<h3>
Download
Beta
</h3>
<h3>
Download
</h3>
Version ${version} (${versionDate}):
</td></tr>
<tr><td
style=
"border: 0px; background-color: #eee;"
>
...
...
@@ -46,7 +46,7 @@ Welcome to H2, the Java SQL database. The main feature of H2 are:
<a
href=
"http://www.h2database.com/h2-${versionDate}.zip"
>
All Platforms (zip, 4.9 MB)
</a>
</td></tr>
<tr><td
style=
"border: 0px; background-color: #eee;"
colspan=
"2"
>
<a
href=
"download.html"
>
All Downloads
(including Stable)
</a>
<a
href=
"download.html"
>
All Downloads
</a>
</td></tr>
</table>
</td>
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
e80d08d5
...
...
@@ -13,8 +13,35 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
INSERT
INTO
ITEM
VALUES
(
59
,
'New version available: 1.1.109 (2009-03-14)'
,
'2009-03-14 12:00:00'
,
$$
A
new
version
of
H2
is
available
for
<
a
href
=
"http://www.h2database.com"
>
download
</
a
>
.
(
You
may
have
to
click
'Refresh'
).
<
br
/>
<
b
>
Changes
and
new
functionality
:
</
b
>
<
ul
><
li
>
New
experimental
NIO
storage
(
faster
on
Mac
OS
but
slower
on
Windows
).
Thanks
a
lot
to
Jan
Kotek
!
</
li
><
li
>
User
defined
functions
can
now
be
deterministic
.
</
li
><
li
>
New
system
function
TRANSACTION_ID
().
</
li
><
li
>
Bit
functions
and
MOD
now
use
BIGINT
.
</
li
><
li
>
The
optimization
for
IN
(...)
is
now
only
used
if
it
helps
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
Could
not
use
a
linked
table
multiple
times
in
the
same
query
.
</
li
><
li
>
Multiple
nested
queries
with
parameters
did
not
always
work
.
</
li
><
li
>
When
converting
CLOB
to
BINARY
,
each
character
resulted
in
one
byte
.
</
li
><
li
>
Bugs
in
the
server
-
less
multi
-
connection
mode
have
been
fixed
.
</
li
><
li
>
Column
names
could
not
be
named
"UNIQUE"
(
with
the
quotes
).
</
li
></
ul
>
For
details
,
see
the
'Change Log'
at
http
:
//
www
.
h2database
.
com
/
html
/
changelog
.
html
<
br
/>
For
future
plans
,
see
the
'Roadmap'
page
at
http
:
//
www
.
h2database
.
com
/
html
/
roadmap
.
html
$$
);
INSERT
INTO
ITEM
VALUES
(
58
,
'New version available: 1.1.108 (
beta;
2009-02-28)'
,
'2009-02-28 12:00:00'
,
'New version available: 1.1.108 (2009-02-28)'
,
'2009-02-28 12:00:00'
,
$$
A
new
version
of
H2
is
available
for
<
a
href
=
"http://www.h2database.com"
>
download
</
a
>
.
(
You
may
have
to
click
'Refresh'
).
<
br
/>
...
...
@@ -410,39 +437,6 @@ For future plans, see the 'Roadmap' page at
http://www.h2database.com/html/roadmap.html
$$);
INSERT INTO ITEM VALUES(46,
'
New
version
available
:
1
.
0
.
76
(
2008
-
07
-
27
)
', '
2008
-
07
-
27
12
:
00
:
00
',
$$A new version of H2 is available for <a href="http://www.h2database.com">download</a>.
(You may have to click '
Refresh
').
<br />
<b>Changes and new functionality:</b>
<ul><li>Key values can now be changed in updatable result sets.
</li><li>Changes in updatable result sets are now always visible.
</li><li>There is a problem with Hibernate when using Boolean columns, see
http://opensource.atlassian.com/projects/hibernate/browse/HHH-3401
</li><li>The comment of a domain (user defined data type) is now used.
</li></ul>
<b>Bugfixes:</b>
<ul><li>ResultSetMetaData.getColumnClassName now returns the correct
class name for BLOB and CLOB.
</li><li>Fixed the Oracle mode: Oracle allows multiple rows only where
all columns of the unique index are NULL.
</li><li>ORDER BY on tableName.columnName didn'
t
work
correctly
if
the
column
name
was
also
used
as
an
alias
.
</
li
><
li
>
Invalid
database
names
are
now
detected
and
a
better
error
message
is
thrown
.
</
li
><
li
>
H2
Console
:
The
progress
display
when
opening
a
database
has
been
improved
.
</
li
><
li
>
The
error
message
when
the
server
doesn
't start has been improved.
</li><li>Temporary files were sometimes deleted too late when executing large insert, update,
or delete operations.
</li><li>The database file was growing after deleting many rows, and after large update operations.
</li></ul>
For details, see the '
Change
Log
' at
http://www.h2database.com/html/changelog.html
<br />
For future plans, see the '
Roadmap
' page at
http://www.h2database.com/html/roadmap.html
$$);
SELECT '
newsfeed
-
rss
.
xml
' FILE,
XMLSTARTDOC() ||
XMLNODE('
rss
', XMLATTR('
version
', '
2
.
0
'),
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论