Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
a08877c0
提交
a08877c0
authored
10月 09, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation: added notranslate tags
上级
4e9eebfd
全部展开
显示空白字符变更
内嵌
并排
正在显示
11 个修改的文件
包含
1137 行增加
和
979 行删除
+1137
-979
features.html
h2/src/docsrc/html/features.html
+174
-121
fragments.html
h2/src/docsrc/html/fragments.html
+3
-1
grammar.html
h2/src/docsrc/html/grammar.html
+1
-1
jaqu.html
h2/src/docsrc/html/jaqu.html
+5
-5
performance.html
h2/src/docsrc/html/performance.html
+47
-36
tutorial.html
h2/src/docsrc/html/tutorial.html
+89
-72
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+293
-263
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+293
-263
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+224
-214
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+7
-2
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+1
-1
没有找到文件。
h2/src/docsrc/html/features.html
浏览文件 @
a08877c0
差异被折叠。
点击展开。
h2/src/docsrc/html/fragments.html
浏览文件 @
a08877c0
...
...
@@ -77,7 +77,9 @@ Initial Developer: H2 Group
<br
/>
<!-- translate
<div id = "google_translate_element"></div>
<a href="http://translate.google.com/translate?u=http%3A%2F%2Fh2database.com"
onclick="javascript:document.getElementById('translate').style.display='';return false;">Translate</a>
<div id = "translate" style="display:none"><div id = "google_translate_element"></div></div>
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({pageLanguage: 'en'}, 'google_translate_element');
...
...
h2/src/docsrc/html/grammar.html
浏览文件 @
a08877c0
...
...
@@ -75,7 +75,7 @@ ${item.syntax}
<br
/>
<h3
id=
"information_schema"
class=
"notranslate"
>
Information Schema
</h3>
<p>
The system tables in the schema
'INFORMATION_SCHEMA'
contain the meta data
The system tables in the schema
<code
class=
"notranslate"
>
INFORMATION_SCHEMA
</code>
contain the meta data
of all tables in the database as well as the current settings.
</p>
<table><tr><th>
Table
</th><th>
Columns
</th></tr>
...
...
h2/src/docsrc/html/jaqu.html
浏览文件 @
a08877c0
...
...
@@ -56,8 +56,8 @@ JaQu provides full control over when and what SQL statements are executed.
<h3>
Restrictions
</h3>
<p>
Primitive types (eg.
boolean, int, long, double) are not supported. Use
Boolean, Integer, Long, and Double
instead.
Primitive types (eg.
<code
class=
"notranslate"
>
boolean, int, long, double
</code>
) are not supported.
Use
<code
class=
"notranslate"
>
java.lang.Boolean, Integer, Long, Double
</code>
instead.
</p>
<h3>
Why in Java?
</h3>
...
...
@@ -71,8 +71,8 @@ in the same application is complicated: you would need to split the application
Currently, JaQu is only tested with the H2 database. The API may change in future versions.
JaQu is not part of the h2 jar file, however the source code is included in H2, under:
</p>
<ul><li>
src/test/org/h2/test/jaqu/*
(samples and tests)
</li><li>
src/tools/org/h2/jaqu/*
(framework)
<ul><li>
<code
class=
"notranslate"
>
src/test/org/h2/test/jaqu/*
</code>
(samples and tests)
</li><li>
<code
class=
"notranslate"
>
src/tools/org/h2/jaqu/*
</code>
(framework)
</li></ul>
<h2>
Building the JaQu library
</h2>
...
...
@@ -247,7 +247,7 @@ public class Product implements Table {
}
</pre>
<p>
The method
'define()'
contains the mapping definition. It is called once
The method
<code
class=
"notranslate"
>
define()
</code>
contains the mapping definition. It is called once
when the class is used for the first time. Like annotations, the mapping is defined in the class itself.
Unlike when using annotations, the compiler can check the syntax even for multi-column
objects (multi-column indexes, multi-column primary keys and so on).
...
...
h2/src/docsrc/html/performance.html
浏览文件 @
a08877c0
差异被折叠。
点击展开。
h2/src/docsrc/html/tutorial.html
浏览文件 @
a08877c0
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
a08877c0
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
a08877c0
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
a08877c0
差异被折叠。
点击展开。
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
a08877c0
...
...
@@ -297,10 +297,15 @@ java org.h2.test.TestAll timer
/*
translate button should be disabled by default because it is slow.
replace class="n" with class="notranslate" for website
documentation: rolling review at
features
(alphabetically)
documentation: rolling review at
tutorial.html
(alphabetically)
<code class="notranslate"></code>
check no space http: or https:
check space' and 'space
check spaceNULL and NULLspace
tool...
mvcc merge problem
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
a08877c0
...
...
@@ -615,4 +615,4 @@ linkage superfluous disallow scoop moebius inputs copilot dmoebius leod jenkov
jakob poker docware peter unstable measurable scramble reissued recreation
scrambling distinguish official unofficial distinguishable overwrites lastval
notranslate vince bonfanti alphabetically sysdummy sysibm activation
deactivation
\ No newline at end of file
deactivation concatenating reproducing
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论