fragments.html 4.8 KB
Newer Older
1
<!--
2
Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0, Version 1.0,
3 4 5 6 7
and under the Eclipse Public License, Version 1.0
Initial Developer: H2 Group
-->
<html><head>
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
Thomas Mueller's avatar
Thomas Mueller committed
8
    <meta name="viewport" content="width=device-width, initial-scale=1" />
9 10 11 12
    <title>Fragments</title>

<!-- [search] { -->
<script type="text/javascript" src="navigation.js"></script>
Thomas Mueller's avatar
Thomas Mueller committed
13
</head><body onload="highlight()" onscroll="scroll()">
14

15
<table class="nav" onmousemove="return mouseMove(event)"><tr class="nav"><td class="nav" valign="top">
Thomas Mueller's avatar
Thomas Mueller committed
16
<div id = "searchMenu" style="width: 180px; overflow: hidden;">
Thomas Mueller's avatar
Thomas Mueller committed
17
<div class="menu" style="white-space:nowrap;">
18 19 20 21
<img src="images/h2-logo-2.png"
    alt="H2 database logo"
    onclick="document.location='main.html'"
    width="136" height="74"/>
Thomas Mueller's avatar
Thomas Mueller committed
22
&nbsp;&nbsp;<span id = "goTop" onclick="window.scrollTo(0,0)" style="color: #fff; position:fixed; font-size: 20px; cursor: pointer;">&#x25b2;</span>
23
</div>
24

25
<form action="submit" onsubmit="return goFirst();">
26
<table width="100%" class="search">
Thomas Mueller's avatar
Thomas Mueller committed
27 28
    <tr class="search">
        <td class="search" colspan="2">
29 30
<!-- translate
<a href="http://translate.google.com/translate?u=http%3A%2F%2Fh2database.com"
31
    onclick="javascript:startTranslate();return false;">Translate</a>
32 33
<div id = "translate" style="display:none"><div id = "google_translate_element"></div></div>
translate -->
Thomas Mueller's avatar
Thomas Mueller committed
34 35 36 37
        </td>
    </tr>
    <tr class="search">
        <td class="search" colspan="2">
Thomas Mueller's avatar
Thomas Mueller committed
38
        <b><label for="search">Search:</label></b>
Thomas Mueller's avatar
Thomas Mueller committed
39 40 41 42
        </td>
    </tr>
    <tr class="search">
        <td class="search" colspan="2">
Thomas Mueller's avatar
Thomas Mueller committed
43
            <input id = "search" name="search" type="text" size="16" maxlength="100" onkeyup="listWords(this.value, '')" /><br />
Thomas Mueller's avatar
Thomas Mueller committed
44
            <input type="reset" id = "clear" style="display:none;" value="Clear" onclick="listWords('', '');" />
Thomas Mueller's avatar
Thomas Mueller committed
45 46 47
        </td>
    </tr>
    <tr class="search" style="display:none;" >
Thomas Mueller's avatar
Thomas Mueller committed
48 49 50 51 52 53
        <td class="search" style="width: 1%; vertical-align: middle;">
            <input id = "highlight" type="checkbox" checked="checked" onclick="highlightCurrent(this.checked, search.value)" />
        </td>
        <td class="search" style="width: 99%; padding: 0px; vertical-align: middle;">
            <label for="highlight">Highlight keyword(s)</label>
        </td>
Thomas Mueller's avatar
Thomas Mueller committed
54 55 56
    </tr>
    <tr class="search">
        <td class="search" colspan="2">
Thomas Mueller's avatar
Thomas Mueller committed
57
            <table id = "result" style="border: 0px;">
Thomas Mueller's avatar
Thomas Mueller committed
58 59 60 61
                <tr style="display:none"><td></td></tr>
            </table>
        </td>
    </tr>
62 63 64
</table>
</form>
<div class="menu">
65
<b><a href="main.html">Home</a></b><br />
66
<a href="download.html">Download</a><br />
67
<a href="cheatSheet.html">Cheat Sheet</a><br />
68 69 70
<br />
<b>Documentation</b><br />
<a href="quickstart.html">Quickstart</a><br />
71 72 73 74 75
<a href="installation.html">Installation</a><br />
<a href="tutorial.html">Tutorial</a><br />
<a href="features.html">Features</a><br />
<a href="performance.html">Performance</a><br />
<a href="advanced.html">Advanced</a><br />
76
<br />
77
<b>Reference</b><br />
78 79 80
<a href="grammar.html">SQL Grammar</a><br />
<a href="functions.html">Functions</a><br />
<a href="datatypes.html">Data Types</a><br />
81
<a href="systemtables.html">System Tables</a><br />
82
<a href="../javadoc/index.html">Javadoc</a><br />
Thomas Mueller's avatar
Thomas Mueller committed
83
<a href="../h2.pdf">PDF (1 MB)</a><br />
84
<br />
85 86 87
<b>Support</b><br />
<a href="faq.html">FAQ</a><br />
<a href="sourceError.html">Error Analyzer</a><br />
88 89 90
<a href="https://groups.google.com/group/h2-database">Google Group (English)</a><br />
<a href="https://groups.google.co.jp/group/h2-database-jp">Google Group (Japanese)</a><br />
<a href="https://groups.google.com/group/h2-cn">Google Group (Chinese)</a><br />
91 92
<br />
<b>Appendix</b><br />
93 94
<a href="history.html">History &amp; Roadmap</a><br />
<a href="license.html">License</a><br />
95 96
<a href="build.html">Build</a><br />
<a href="links.html">Links</a><br />
97
<a href="mvstore.html">MVStore</a><br />
98
<a href="architecture.html">Architecture</a><br />
99
<br />
100

101 102 103 104 105
</div>
</div>
</td>

<td class="nav" style="cursor: e-resize;" onmousedown="return mouseDown(event)" onmouseup="return mouseUp(event)">&nbsp;</td>
106
<td class="nav"><div class="content">
107 108 109 110

<!-- } -->

<!-- [close] { -->
111
</div></td></tr></table>
112 113
<script type="text/javascript" src="index.js"></script>
<script type="text/javascript" src="search.js"></script>
114 115 116 117 118 119 120 121 122 123 124 125
<script type="text/javascript">
function startTranslate() {
    document.getElementById('translate').style.display='';
    var script=document.createElement('script');
    script.setAttribute("type","text/javascript");
    script.setAttribute("src", "http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit");
    document.getElementsByTagName("head")[0].appendChild(script);
}
function googleTranslateElementInit() {
    new google.translate.TranslateElement({pageLanguage: 'en'}, 'google_translate_element');
}
</script>
126

127 128 129
<!-- } -->

</body></html>