Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
15bfa6c9
Unverified
提交
15bfa6c9
authored
7 年前
作者:
Evgenij Ryazanov
提交者:
GitHub
7 年前
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #947 from katzyn/docs
Fix building of documentation and use modern names of Java versions
上级
b57efd22
cdf188f3
master
version-1.4.198
version-1.4.197
无相关合并请求
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
8 行增加
和
7 行删除
+8
-7
help.csv
h2/src/docsrc/help/help.csv
+1
-1
build.html
h2/src/docsrc/html/build.html
+5
-4
Parser.java
h2/src/main/org/h2/command/Parser.java
+2
-2
没有找到文件。
h2/src/docsrc/help/help.csv
浏览文件 @
15bfa6c9
...
...
@@ -3260,7 +3260,7 @@ LOG(A)
"Functions (Numeric)","LOG10","
LOG10(numeric)
","
See also Java ""Math.log10""
(in Java 5)
.
See also Java ""Math.log10"".
This method returns a double.
","
LOG10(A)
...
...
This diff is collapsed.
Click to expand it.
h2/src/docsrc/html/build.html
浏览文件 @
15bfa6c9
...
...
@@ -49,14 +49,15 @@ This database is written in Java and therefore works on many platforms.
<h2
id=
"environment"
>
Environment
</h2>
<p>
To run this database, a Java Runtime Environment (JRE) version
1.
7 or higher is required.
To run this database, a Java Runtime Environment (JRE) version 7 or higher is required.
</p>
<p>
To create the database executables, the following software stack was used.
To use this database, it is not required to install this software however.
</p>
<ul><li>
Mac OS X and Windows
</li><li><a
href=
"http://www.oracle.com/technetwork/java/javase/downloads/index.html"
>
Oracle JDK Version 1.7
</a>
</li><li><a
href=
"http://www.oracle.com/technetwork/java/javase/downloads/index.html"
>
Oracle JDK Version 7
</a>
(version 7 is not available for free download any more)
</li><li><a
href=
"http://www.eclipse.org"
>
Eclipse
</a>
</li><li>
Eclipse Plugins:
<a
href=
"http://subclipse.tigris.org"
>
Subclipse
</a>
,
...
...
@@ -70,7 +71,7 @@ To use this database, it is not required to install this software however.
<h2
id=
"building"
>
Building the Software
</h2>
<p>
You need to install a JDK, for example the Oracle JDK version
1.7 or 1.
8.
You need to install a JDK, for example the Oracle JDK version
7 or
8.
Ensure that Java binary directory is included in the
<code>
PATH
</code>
environment variable, and that
the environment variable
<code>
JAVA_HOME
</code>
points to your Java installation.
On the command line, go to the directory
<code>
h2
</code>
and execute the following command:
...
...
@@ -96,7 +97,7 @@ To run the build tool in shell mode, use the command line option <code>-</code>:
<h3>
Switching the Source Code
</h3>
<p>
The source code uses Java
1.
7 features.
The source code uses Java 7 features.
To switch the source code to the installed version of Java, run:
</p>
<pre>
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/command/Parser.java
浏览文件 @
15bfa6c9
...
...
@@ -1626,8 +1626,8 @@ public class Parser {
ifExists
=
readIfExists
(
ifExists
);
command
.
setIfExists
(
ifExists
);
//Support for MySQL: DROP INDEX index_name ON tbl_name
if
(
readIf
(
"ON"
))
{
readIdentifierWithSchema
();
if
(
readIf
(
"ON"
))
{
readIdentifierWithSchema
();
}
return
command
;
}
else
if
(
readIf
(
"USER"
))
{
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论