Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
8f67eac8
提交
8f67eac8
authored
16 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
--no commit message
--no commit message
上级
b0e7f7e2
全部展开
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
1026 行增加
和
1011 行删除
+1026
-1011
changelog.html
h2/src/docsrc/html/changelog.html
+9
-3
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+330
-321
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+330
-321
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+324
-321
Constants.java
h2/src/main/org/h2/engine/Constants.java
+1
-1
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+29
-43
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+3
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
8f67eac8
...
...
@@ -18,7 +18,13 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
The H2 Console tool now works with the JDBC-ODBC bridge.
<ul><li>
-
</li></ul>
<h2>
Version 1.1.100 (2008-10-04)
</h2>
<ul><li>
In version 1.1, the following system properties are now enabled by default:
h2.lobFilesInDirectories, h2.optimizeGroupSorted, h2.optimizeInJoin, h2.shareLinkedConnections
</li><li>
The H2 Console tool now works with the JDBC-ODBC bridge.
</li><li>
The H2 Console tool now supports command line options to start things separately.
</li><li>
Large objects did not work for in-memory databases in server mode in Linux.
</li><li>
Connections from a local address other than 'localhost' were not allowed if remote
...
...
@@ -28,9 +34,9 @@ Change Log
</li><li>
By default, databases are shared in the same process. For read-only databases
this causes unnecessary synchronization, but safes memory. If you want that each connection
opens its own database, append ;OPEN_NEW=TRUE to the database URL.
</li><li>
New auto-reconnect feature will
setting causes
the JDBC driver to reconnect to
</li><li>
New auto-reconnect feature will
cause
the JDBC driver to reconnect to
the database if the connection is lost. To enable, append ;AUTO_RECONNECT=TRUE to the database URL.
This is specially helpful when using AUTO_SERVER.
This is specially helpful when using AUTO_SERVER.
AUTO_SERVER automatically uses auto-reconnect.
</li><li>
CreateCluster: the property 'serverlist' is now called 'serverList'.
</li><li>
The ConvertTraceFile tool could not parse some files because the trace
mechanism did not encode prepared statement parameters.
...
...
This diff is collapsed.
Click to expand it.
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
8f67eac8
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
8f67eac8
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
8f67eac8
差异被折叠。
点击展开。
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
8f67eac8
...
...
@@ -90,7 +90,7 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"2008-
09-29
"
;
public
static
final
String
BUILD_DATE
=
"2008-
10-04
"
;
/**
* The build date is updated for each public release.
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
8f67eac8
...
...
@@ -13,6 +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
(
50
,
'New version available: 1.1.100 (beta; 2008-10-04)'
,
'2008-10-04 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
>
In
version
H2
1
.
1
,
some
features
are
now
enabled
by
default
.
</
li
><
li
>
New
auto
-
reconnect
feature
.
To
enable
,
append
;
AUTO_RECONNECT
=
TRUE
to
the
database
URL
.
<
ul
><
li
>
The
H2
Console
tool
now
works
with
the
JDBC
-
ODBC
bridge
.
</
li
><
li
>
The
H2
Console
tool
now
supports
command
line
options
.
</
li
><
li
>
The
h2console
.
war
can
now
be
built
using
the
Java
build
.
</
li
><
li
>
If
you
want
that
each
connection
opens
its
own
database
,
append
;
OPEN_NEW
=
TRUE
to
the
database
URL
.
</
li
><
li
>
CreateCluster
:
the
property
'serverlist'
is
now
called
'serverList'
.
</
li
><
li
>
Databases
names
can
now
be
one
character
long
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
Connections
from
a
local
address
other
than
'localhost'
were
not
allowed
by
default
.
</
li
><
li
>
Large
objects
did
not
work
for
in
-
memory
databases
in
server
mode
in
Linux
.
</
li
><
li
>
The
ConvertTraceFile
tool
could
not
parse
some
files
.
</
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
(
49
,
'New version available: 1.0.79 (2008-09-26)'
,
'2008-09-26 12:00:00'
,
$$
A
new
version
of
H2
is
available
for
<
a
href
=
"http://www.h2database.com"
>
download
</
a
>
.
...
...
@@ -401,49 +430,6 @@ For future plans, see the ''Roadmap'' page at
http
:
//
www
.
h2database
.
com
/
html
/
roadmap
.
html
');
INSERT INTO ITEM VALUES(38,
'
New
version
available
:
1
.
0
.
68
(
2008
-
03
-
15
)
', '
2008
-
03
-
15
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
>
Faster
text
comparison
when
using
a
collator
.
</
li
><
li
>
CSVWRITE
now
supports
a
''
null
string
''
to
parse
NULL
.
</
li
><
li
>
UPDATE
SET
column
=
DEFAULT
is
now
supported
.
</
li
><
li
>
Large
SELECT
DISTINCT
and
UNION
queries
are
now
supported
(
this
is
disabled
by
default
).
</
li
><
li
>
Committing
inside
a
trigger
is
not
allowed
any
more
.
</
li
><
li
>
ALTER
SEQUENCE
can
now
be
used
inside
a
transaction
.
</
li
><
li
>
New
system
property
h2
.
aliasColumnName
.
When
enabled
,
aliased
columns
return
the
real
table
and
column
name
in
ResultSetMetaData
calls
.
</
li
><
li
>
Improved
performance
when
using
lob
files
in
directories
(
however
this
is
still
disabled
by
default
)
</
li
><
li
>
Fulltext
search
:
new
method
SEARCH_DATA
.
</
li
><
li
>
New
experimental
optimization
for
GROUP
BY
queries
.
</
li
><
li
>
Better
browser
starting
for
the
H2
Console
on
Linux
.
</
li
><
li
>
Improved
support
for
IKVM
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
With
MVCC
=
TRUE
,
duplicate
rows
could
appear
in
the
result
set
.
</
li
><
li
>
Queries
with
many
outer
join
tables
were
very
slow
.
</
li
><
li
>
Unused
LOB
files
were
deleted
much
too
late
.
</
li
><
li
>
H2
Console
:
remote
connections
were
very
slow
.
</
li
><
li
>
H2
Console
:
autocomplete
didn
''
t
work
with
very
large
scripts
.
</
li
><
li
>
H2
Console
:
improved
compatibility
with
Safari
(
Safari
requires
keep
-
alive
)
</
li
><
li
>
Random
:
the
process
didn
''
t
stop
if
generateSeed
was
very
slow
.
</
li
><
li
>
SELECT
UNION
with
a
different
number
of
ORDER
BY
columns
didn
''
t
work
.
</
li
><
li
>
When
using
a
view
,
the
column
precision
was
wrong
sometimes
.
</
li
><
li
>
Some
long
running
queries
could
not
be
canceled
.
</
li
><
li
>
When
using
encrypted
databases
,
and
using
the
wrong
file
password
,
the
log
file
was
renamed
sometimes
.
</
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
'),
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
8f67eac8
...
...
@@ -284,6 +284,8 @@ http://www.marciowb.net/blog/2008/08/quickly-using-h2-database-with
osgi (derby, hsqldb)
support 'build test'
auto_reconnect
implemented:
- auto_server includes auto_reconnect
...
...
@@ -309,7 +311,7 @@ check all version(s) before the release
document url parameter auto_server
document url parameter auto_reconnect
document url parameter
private
document url parameter
open_new
Add version number. Install directory: h2-1.1, jar file: h2-1.1.100.jar.
Micro version: use build number, staring with 1.1.100
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论