提交 f174f5b9 authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 bbd5fa8b
...@@ -1028,7 +1028,9 @@ SET [ DATABASE ] COLLATION ...@@ -1028,7 +1028,9 @@ SET [ DATABASE ] COLLATION
"," ","
Sets the collation used for comparing strings. Sets the collation used for comparing strings.
This command can only be executed if there are no tables defined. This command can only be executed if there are no tables defined.
See ""java.text.Collator"" for details about the supported collations and the STRENGTH. See ""java.text.Collator"" for details about the supported collations and the STRENGTH
(PRIMARY is usually case- and umlaut-insensitive; SECONDARY is case-insensitive but umlaut-sensitive;
TERTIARY is both case- and umlaut-sensitive; IDENTICAL is sensitive to all differences and only affects ordering).
The ICU4J collator is used if it is in the classpath. The ICU4J collator is used if it is in the classpath.
It is also used if the collation name starts with ICU4J_ It is also used if the collation name starts with ICU4J_
...@@ -3317,7 +3319,7 @@ CALL ARRAY_GET(('Hello', 'World'), 2) ...@@ -3317,7 +3319,7 @@ CALL ARRAY_GET(('Hello', 'World'), 2)
" "
"Functions (System)","ARRAY_LENGTH"," "Functions (System)","ARRAY_LENGTH","
ARRAY_GET(arrayExpression) ARRAY_LENGTH(arrayExpression)
"," ","
Returns the length of an array. Returns the length of an array.
"," ","
......
...@@ -11,11 +11,10 @@ H2 Database Engine ...@@ -11,11 +11,10 @@ H2 Database Engine
</title> </title>
<style type="text/css"> <style type="text/css">
td, input, select, textarea, body, td, th { td, input, select, textarea, body, td, th {
font: 10pt Tahoma, Arial, Helvetica, sans-serif; font: 13px Arial, sans-serif;
font-weight: normal;
} }
h1, h2, h3, h4, h5 { h1, h2, h3, h4, h5 {
font: 10pt Tahoma, Arial, Helvetica, sans-serif; font: 13px Arial, sans-serif;
font-weight: bold; font-weight: bold;
} }
h1 { h1 {
...@@ -23,11 +22,11 @@ h1 { ...@@ -23,11 +22,11 @@ h1 {
padding: 2px 4px 2px 4px; padding: 2px 4px 2px 4px;
margin-bottom: 0px; margin-bottom: 0px;
color: #fff; color: #fff;
font-size: 19pt; font-size: 19px;
line-height: normal; line-height: normal;
} }
h2 { h2 {
font-size: 13pt; font-size: 16px;
} }
a.link { a.link {
text-decoration: underline; text-decoration: underline;
...@@ -46,7 +45,7 @@ a:hover { ...@@ -46,7 +45,7 @@ a:hover {
color: blue; color: blue;
} }
td, input, select, textarea, body, code, pre { td, input, select, textarea, body, code, pre {
font-size: 10pt; font: 13px Arial, sans-serif;
} }
pre { pre {
background-color: #ece9d8; background-color: #ece9d8;
......
...@@ -10,12 +10,13 @@ Initial Developer: H2 Group ...@@ -10,12 +10,13 @@ Initial Developer: H2 Group
<!-- [search] { --> <!-- [search] { -->
<script type="text/javascript" src="navigation.js"></script> <script type="text/javascript" src="navigation.js"></script>
</head><body onload="highlight();"> </head><body onload="highlight()" onscroll="scroll()">
<table class="nav" onmousemove="return mouseMove(event)"><tr class="nav"><td class="nav" valign="top"> <table class="nav" onmousemove="return mouseMove(event)"><tr class="nav"><td class="nav" valign="top">
<div id = "searchMenu" style="width: 180px; overflow: hidden;"> <div id = "searchMenu" style="width: 180px; overflow: hidden;">
<div class="menu"> <div class="menu" style="white-space:nowrap;">
<img src="images/h2-logo.png" alt="H2 database logo" onclick="document.location='main.html'" width="136" height="74"/> <img src="images/h2-logo.png" alt="H2 database logo" onclick="document.location='main.html'" width="136" height="74"/>
&nbsp;&nbsp;<span id = "goTop" onclick="window.scrollTo(0,0)" style="color: #fff; position:fixed; font-size: 20px">&#x25b2;</span>
</div> </div>
<form action="submit" onsubmit="return goFirst();"> <form action="submit" onsubmit="return goFirst();">
...@@ -36,7 +37,7 @@ translate --> ...@@ -36,7 +37,7 @@ translate -->
</tr> </tr>
<tr class="search"> <tr class="search">
<td class="search" colspan="2"> <td class="search" colspan="2">
<input id = "search" name="search" type="text" size="21" maxlength="100" onkeyup="listWords(this.value, '')" /><br /> <input id = "search" name="search" type="text" size="16" maxlength="100" onkeyup="listWords(this.value, '')" /><br />
<input type="reset" id = "clear" style="display:none;" value="Clear" onclick="listWords('', '');" /> <input type="reset" id = "clear" style="display:none;" value="Clear" onclick="listWords('', '');" />
</td> </td>
</tr> </tr>
......
...@@ -5,6 +5,16 @@ ...@@ -5,6 +5,16 @@
* Initial Developer: H2 Group * Initial Developer: H2 Group
*/ */
function scroll() {
var scroll = document.documentElement.scrollTop;
if (!scroll) {
scroll = document.body.scrollTop;
}
var c = 255 - Math.min(scroll / 4, 64);
var goTop = document.getElementById('goTop');
goTop.style.color = 'rgb(' + c + ',' + c + ',' + c + ')';
}
function loadFrameset() { function loadFrameset() {
var a = location.search.split('&'); var a = location.search.split('&');
var page = decodeURIComponent(a[0].substr(1)); var page = decodeURIComponent(a[0].substr(1));
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
*/ */
td, input, select, textarea, body, code, pre, td, th { td, input, select, textarea, body, code, pre, td, th {
font: 10pt/130% Tahoma, Arial, Helvetica, sans-serif; font: 13px/1.4 Arial, sans-serif;
font-weight: normal; font-weight: normal;
} }
...@@ -26,20 +26,20 @@ h1 { ...@@ -26,20 +26,20 @@ h1 {
padding: 2px 4px 2px 4px; padding: 2px 4px 2px 4px;
margin-top: 11px; margin-top: 11px;
color: #fff; color: #fff;
font-size: 19pt; font-size: 22px;
line-height: normal; line-height: normal;
} }
h2 { h2 {
font-size: 16pt; font-size: 19px;
} }
h3 { h3 {
font-size: 13pt; font-size: 16px;
} }
h4 { h4 {
font-size: 10pt; font-size: 13px;
} }
hr { hr {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -1229,7 +1229,7 @@ ARRAY_GET(arrayExpression, indexExpression) ...@@ -1229,7 +1229,7 @@ ARRAY_GET(arrayExpression, indexExpression)
"," ","
Returns one element of an array." Returns one element of an array."
"Functions (System)","ARRAY_LENGTH"," "Functions (System)","ARRAY_LENGTH","
ARRAY_GET(arrayExpression) ARRAY_LENGTH(arrayExpression)
"," ","
Returns the length of an array." Returns the length of an array."
"Functions (System)","AUTOCOMMIT"," "Functions (System)","AUTOCOMMIT","
......
...@@ -685,5 +685,5 @@ litailang springsource eccn springframework spr growth teams gigabytes europe ...@@ -685,5 +685,5 @@ litailang springsource eccn springframework spr growth teams gigabytes europe
mcleod decade experience travel willing scjp himself routinely tsi retrieving mcleod decade experience travel willing scjp himself routinely tsi retrieving
multiplied ross judson closeable watcher enqueued referent refs watch tracked multiplied ross judson closeable watcher enqueued referent refs watch tracked
preserving disallowed restrictive dst regions kiritimati flow wider nanosecond preserving disallowed restrictive dst regions kiritimati flow wider nanosecond
march april cutover julian transitions enderbury kwajalein viewport march april cutover julian transitions enderbury kwajalein viewport onscroll
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论