Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
060a64c7
提交
060a64c7
authored
7月 06, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation.
上级
a9c6462e
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
17 行增加
和
3 行删除
+17
-3
advanced.html
h2/src/docsrc/html/advanced.html
+7
-0
changelog.html
h2/src/docsrc/html/changelog.html
+9
-2
MathUtils.java
h2/src/main/org/h2/util/MathUtils.java
+1
-1
没有找到文件。
h2/src/docsrc/html/advanced.html
浏览文件 @
060a64c7
...
@@ -559,6 +559,7 @@ At this time, only a subset of the PostgreSQL network protocol is implemented.
...
@@ -559,6 +559,7 @@ At this time, only a subset of the PostgreSQL network protocol is implemented.
Also, there may be compatibility problems on the SQL level, with the catalog, or with text encoding.
Also, there may be compatibility problems on the SQL level, with the catalog, or with text encoding.
Problems are fixed as they are found.
Problems are fixed as they are found.
Currently, statements can not be canceled when using the PG protocol.
Currently, statements can not be canceled when using the PG protocol.
Also, H2 does not provide index meta over ODBC.
</p>
</p>
<p>
<p>
PostgreSQL ODBC Driver Setup requires a database password; that means it
PostgreSQL ODBC Driver Setup requires a database password; that means it
...
@@ -575,6 +576,12 @@ Also, it is currently not possible to use encrypted SSL connections.
...
@@ -575,6 +576,12 @@ Also, it is currently not possible to use encrypted SSL connections.
Therefore the ODBC driver should not be used where security is important.
Therefore the ODBC driver should not be used where security is important.
</p>
</p>
<h3>
Using Microsoft Access
</h3>
<p>
When using Microsoft Access to edit data in a linked H2 table, you may need to enable the following option:
Tools - Options - Edit/Find - ODBC fields.
</p>
<h2
id=
"microsoft_dot_net"
>
Using H2 in Microsoft .NET
</h2>
<h2
id=
"microsoft_dot_net"
>
Using H2 in Microsoft .NET
</h2>
<p>
<p>
The database can be used from Microsoft .NET even without using Java, by using IKVM.NET.
The database can be used from Microsoft .NET even without using Java, by using IKVM.NET.
...
...
h2/src/docsrc/html/changelog.html
浏览文件 @
060a64c7
...
@@ -18,12 +18,19 @@ Change Log
...
@@ -18,12 +18,19 @@ Change Log
<h1>
Change Log
</h1>
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
Automatic database upgrade from non page store is now possible. If the file
<ul><li>
Conditions with many OR operations could throw an UnsupportedOperationException.
h2mig_pagestore_addon.jar is found, the database will be converted to the current
</li><li>
XA connection: after transaction commit or rollback,
the physical connection is set into autocommit mode.
</li><li>
MULTI_THREADED did not work correctly and could throw the exception
"try to add a record twice" for larger databases because cache access was not correctly synchronized.
</li><li>
Automatic database upgrade from non page store is now possible. If the
classes from the h2mig_pagestore_addon.jar file are in the classpath, the database will be converted to the current
page store format automatically. The file can be found here:
page store format automatically. The file can be found here:
<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: MS Access could not link to a table with unique index or primary key.
To solve this problem, index meta data is currently disabled for ODBC.
</li><li>
ODBC: MS Access could not link to a table with a name containing '_'.
</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.
</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.
...
...
h2/src/main/org/h2/util/MathUtils.java
浏览文件 @
060a64c7
...
@@ -184,7 +184,7 @@ public class MathUtils {
...
@@ -184,7 +184,7 @@ public class MathUtils {
*/
*/
static
void
warn
(
String
s
,
Throwable
t
)
{
static
void
warn
(
String
s
,
Throwable
t
)
{
// not a fatal problem, but maybe reduced security
// not a fatal problem, but maybe reduced security
System
.
out
.
println
(
"
RandomUtils w
arning: "
+
s
);
System
.
out
.
println
(
"
W
arning: "
+
s
);
if
(
t
!=
null
)
{
if
(
t
!=
null
)
{
t
.
printStackTrace
();
t
.
printStackTrace
();
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论