Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
d0d4f32d
提交
d0d4f32d
authored
4月 03, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
prepare release
上级
2796b607
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
1300 行增加
和
1273 行删除
+1300
-1273
changelog.html
h2/src/docsrc/html/changelog.html
+4
-0
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+418
-412
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+418
-412
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+415
-413
Constants.java
h2/src/main/org/h2/engine/Constants.java
+4
-4
newsfeed.sql
h2/src/test/org/h2/samples/newsfeed.sql
+40
-31
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+1
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
d0d4f32d
...
...
@@ -18,6 +18,10 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
Support for not persistent in-memory tables in regular (persistent) databases
</li></ul>
<h2>
Version 1.1.110 (2009-04-03)
</h2>
<ul><li>
Support for not persistent in-memory tables in regular (persistent) databases
using CREATE MEMORY TABLE(..) NOT PERSISTENT. Thanks a lot to Sergi Vladykin for the patch!
</li><li>
The H2 Console trimmed the password (removed leading and trailing spaces).
...
...
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
d0d4f32d
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
d0d4f32d
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
d0d4f32d
This source diff could not be displayed because it is too large. You can
view the blob
instead.
h2/src/main/org/h2/engine/Constants.java
浏览文件 @
d0d4f32d
...
...
@@ -14,22 +14,22 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public
static
final
int
BUILD_ID
=
1
09
;
public
static
final
int
BUILD_ID
=
1
10
;
/**
* The build id of the last stable release.
*/
public
static
final
int
BUILD_ID_STABLE
=
10
8
;
public
static
final
int
BUILD_ID_STABLE
=
10
9
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE
=
"2009-0
3-14
"
;
public
static
final
String
BUILD_DATE
=
"2009-0
4-03
"
;
/**
* The build date is updated for each public release.
*/
public
static
final
String
BUILD_DATE_STABLE
=
"2009-0
2-28
"
;
public
static
final
String
BUILD_DATE_STABLE
=
"2009-0
3-14
"
;
/**
* The TCP protocol version number 5. This protocol is used by the TCP
...
...
h2/src/test/org/h2/samples/newsfeed.sql
浏览文件 @
d0d4f32d
...
...
@@ -13,6 +13,46 @@ INSERT INTO CHANNEL VALUES('H2 Database Engine' ,
CREATE
TABLE
ITEM
(
ID
INT
PRIMARY
KEY
,
TITLE
VARCHAR
,
ISSUED
TIMESTAMP
,
DESC
VARCHAR
);
INSERT
INTO
ITEM
VALUES
(
60
,
'New version available: 1.1.110 (2009-04-03)'
,
'2009-04-03 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
>
Improved
OSGi
support
.
</
li
><
li
>
Support
for
non
-
persistent
tables
in
regular
databases
.
Thanks
a
lot
to
Sergi
Vladykin
for
the
patch
!
</
li
><
li
>
Creating
a
JdbcConnectionPool
has
been
simplified
a
bit
.
</
li
><
li
>
Improved
Javadoc
navigation
(
similar
to
Scaladoc
).
</
li
><
li
>
The
API
of
the
tools
changed
a
bit
.
</
li
><
li
>
The
FTP
server
is
no
longer
included
in
the
h2
*
.
jar
file
.
</
li
><
li
>
Linked
tables
to
SQLite
database
can
now
be
created
.
</
li
><
li
>
CREATE
TABLE
:
improved
compatibility
with
other
databases
.
</
li
><
li
>
Improved
error
message
for
unsupported
features
.
</
li
><
li
>
H2
Console
:
the
browser
setting
now
supports
arguments
.
</
li
></
ul
>
<
b
>
Bugfixes
:
</
b
>
<
ul
><
li
>
The
built
-
in
JdbcConnectionPool
is
now
about
70
times
faster
.
</
li
><
li
>
The
H2
Console
no
longer
trims
the
password
.
</
li
><
li
>
ResultSet
.
findColumn
now
also
checks
for
column
names
,
not
only
labels
.
</
li
><
li
>
Nested
IN
(
IN
(...))
didn
't work.
</li><li>NIO storage: the nio: prefix was using memory mapped files.
</li><li>Deterministic user defined functions did not work.
</li><li>JdbcConnectionPool.setLoginTimeout with 0 was broken.
</li><li>The data type of a SUBSTRING method was wrong.
</li><li>H2 Console: auto-complete of identifiers did not work correctly.
</li><li>DISTINCT and GROUP BY on a CLOB column was broken.
</li><li>Some internal caches did not use the LRU mechanism.
</li><li>DatabaseMetaData.getSQLKeywords now returns the correct list.
</li><li>More bugs in the server-less multi-connection mode have been fixed.
</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(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>.
...
...
@@ -406,37 +446,6 @@ For future plans, see the 'Roadmap' page at
http
:
//
www
.
h2database
.
com
/
html
/
roadmap
.
html
$$
);
INSERT INTO ITEM VALUES(47,
'
New
version
available
:
1
.
0
.
77
(
2008
-
08
-
16
)
', '
2008
-
08
-
16
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>JaQu is now using prepared statements and supports Date, Time, Timestamp.
</li><li>Support a comma before closing a list, as in: create table test(id int,)
</li><li>DB2 compatibility: the DB2 fetch-first-clause is supported.
</li><li>ResultSet.setFetchSize is now supported.
</li></ul>
<b>Bugfixes:</b>
<ul><li>When using remote in-memory databases, large LOB objects did not work.
</li><li>Timestamp columns such as TIMESTAMP(6) were not compatible to other database.
</li><li>Opening a large database was slow if there was a problem opening the previous time.
</li><li>Oracle compatibility: old style outer join syntax using (+) did work correctly sometimes.
</li><li>MySQL compatibility: linked tables had lower case column names on some systems.
</li><li>NOT IN(SELECT ...) was incorrect if the subquery returns no rows.
</li><li>CREATE TABLE AS SELECT did not work correctly in the multi-version concurrency mode.
</li><li>It has been reported that when using Install4j on some Linux systems and enabling the '
pack200
' option,
the h2.jar becomes corrupted by the install process, causing application failure.
A workaround is to add an empty file h2.jar.nopack next to the h2.jar file.
The reason for this problem is not known.
</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'
),
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
d0d4f32d
...
...
@@ -584,4 +584,4 @@ grails reloading slightly accepting deploying conflicting recovered counters
versus extracts squirrel misdirected rle looking arc addressed european
soerensen favicon glass restarts flexive fish resulted vpda mvc kotek jan
consistently springfuse grep signatures wrote symbolic parents caches readers
animate scaladoc models disadvantages vladykin sergi
\ No newline at end of file
animate scaladoc models disadvantages vladykin sergi trims
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论