mainWeb.html 11.2 KB
Newer Older
1 2
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
Thomas Mueller's avatar
Thomas Mueller committed
3
Copyright 2004-2009 H2 Group. Multiple-Licensed under the H2 License, Version 1.0,
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
and under the Eclipse Public License, Version 1.0
(http://h2database.com/html/license.html).
Initial Developer: H2 Group
-->
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head><meta http-equiv="Content-Type" content="text/html;charset=utf-8" /><title>
H2 Database Engine
</title><link rel="stylesheet" type="text/css" href="stylesheet.css" />
<link rel="alternate" type="application/atom+xml" title="H2 Newsfeed (Atom)" href="http://www.h2database.com/html/newsfeed-atom.xml" />
<link rel="alternate" type="application/rss+xml" title="H2 Newsfeed (RSS)" href="http://www.h2database.com/html/newsfeed-rss.xml" />
<!-- [search] { -->
<script type="text/javascript" src="navigation.js"></script>
</head><body onload="frameMe();">
<table class="content"><tr class="content"><td class="content"><div class="contentDiv">
<!-- } -->

<h1>H2 Database Engine</h1>
<p>
22
Welcome to H2, the Java SQL database. The main features of H2 are:
23 24
</p>
<ul>
Thomas Mueller's avatar
Thomas Mueller committed
25 26
<li>Very fast, open source, JDBC API
</li><li>Embedded and server modes; in-memory databases
27 28 29 30 31 32 33
</li><li>Browser based Console application
</li><li>Small footprint: around 1 MB jar file size
</li></ul>

<table style="border: 0px; width: 425px;">
    <tr><td style="border: 0px; background-color: #eee;">
        <table style="border: 0px; margin: 0px 7px 12px 7px;">
Thomas Mueller's avatar
Thomas Mueller committed
34
            <tr><td style="border: 0px; background-color: #eee;" colspan="2">
35
                <h3 style="margin-top: 1em;">Download Beta</h3>
Thomas Mueller's avatar
Thomas Mueller committed
36
                Version ${version} (${versionDate}):
37 38
            </td></tr>
            <tr><td style="border: 0px; background-color: #eee;">
Thomas Mueller's avatar
Thomas Mueller committed
39
                <a href="http://www.h2database.com/h2-setup-${versionDate}.exe"><img style="border: 1px #00f solid;" src="images/download.png" alt="download" width="22" height="20"/></a>
40
            </td><td style="vertical-align: middle; border: 0px; background-color: #eee;">
41
                <a href="http://www.h2database.com/h2-setup-${versionDate}.exe">Windows Installer (4 MB)</a>
42 43
            </td></tr>
            <tr><td style="border: 0px; background-color: #eee;">
Thomas Mueller's avatar
Thomas Mueller committed
44
                <a href="http://www.h2database.com/h2-${versionDate}.zip"><img style="border: 1px #00f solid;" src="images/download.png" alt="download" width="22" height="20"/></a>
45
            </td><td style="vertical-align: middle; border: 0px; background-color: #eee;">
46
                <a href="http://www.h2database.com/h2-${versionDate}.zip">All Platforms (zip, 5 MB)</a>
47 48
            </td></tr>
            <tr><td style="border: 0px; background-color: #eee;" colspan="2">
Thomas Mueller's avatar
Thomas Mueller committed
49
                <a href="download.html">All Downloads</a>
50 51 52 53 54 55 56
            </td></tr>
        </table>
    </td>
    <td style="border: 0px;">&nbsp;&nbsp;&nbsp;</td>
    <td style="border: 0px; background-color: #eee;">
        <table style="border: 0px; margin: 0px 7px 12px 7px;">
            <tr><td style="border: 0px; background-color: #eee;">
57
                <h3 style="margin-top: 1em;">Support</h3>
58 59 60
                <p>
                    <a href="http://groups.google.com/group/h2-database">English Google Group</a><br />
                    <a href="http://groups.google.co.jp/group/h2-database-jp">Japanese Google Group</a><br /><br />
61
                    For non-technical issues, use: <br />
62 63
                    <script type="text/javascript">
                    <!--
Thomas Mueller's avatar
Thomas Mueller committed
64 65 66 67 68 69 70 71
                    var a = '-support.png';
                    var b = 'mail';
                    var c = 'support ';
                    var d = 'db';
                    var e = 'at ';
                    var f = '.com';
                    var g = 'h2database';
                    var alt = 'mail address: ' + d + c + e + g + f + '(without spaces)';
72
                    document.write('<' + 'a h'+'ref="em' + 'ail:' + d + c + e + g + f +'">' + d + c + e + g + f + '<' + '/a>');
73 74 75 76 77 78 79 80
                    //-->
                    </script>
                </p>
            </td></tr>
        </table>
    </td></tr>

<tr><td colspan="3" style="border: 0px; padding: 5px 0px 15px 0px;">
81
    <h3 style="margin-top: 1em;">Features</h3>
82
    <table style="width: 425px;"><tr class="notranslate">
83 84
        <th></th>
        <th>H2</th>
Thomas Mueller's avatar
Thomas Mueller committed
85 86 87 88
        <th><a href="http://db.apache.org/derby">Derby</a></th>
        <th><a href="http://hsqldb.org">HSQLDB</a></th>
        <th><a href="http://mysql.com">MySQL</a></th>
        <th><a href="http://www.postgresql.org">PostgreSQL</a></th>
89 90 91 92 93 94 95 96
        </tr><tr>
        <td>Pure Java</td>
        <td class="compareY">Yes</td>
        <td class="compareY">Yes</td>
        <td class="compareY">Yes</td>
        <td class="compareN">No</td>
        <td class="compareN">No</td>
        </tr><tr>
Thomas Mueller's avatar
Thomas Mueller committed
97
        <td>Memory Mode</td>
98
        <td class="compareY">Yes</td>
Thomas Mueller's avatar
Thomas Mueller committed
99
        <td class="compareY">Yes</td>
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
        <td class="compareY">Yes</td>
        <td class="compareN">No</td>
        <td class="compareN">No</td>
        </tr><tr>
        <td>Transaction Isolation</td>
        <td class="compareY">Yes</td>
        <td class="compareY">Yes</td>
        <td class="compareN">No</td>
        <td class="compareY">Yes</td>
        <td class="compareY">Yes</td>
        </tr><tr>
        <td>Cost Based Optimizer</td>
        <td class="compareY">Yes</td>
        <td class="compareY">Yes</td>
        <td class="compareN">No</td>
        <td class="compareY">Yes</td>
        <td class="compareY">Yes</td>
        </tr><tr>
        <td>Encrypted Database</td>
        <td class="compareY">Yes</td>
        <td class="compareY">Yes</td>
        <td class="compareN">No</td>
        <td class="compareN">No</td>
        <td class="compareN">No</td>
        </tr><tr>
        <td>ODBC Driver</td>
        <td class="compareY">Yes</td>
        <td class="compareN">No</td>
        <td class="compareN">No</td>
        <td class="compareY">Yes</td>
        <td class="compareY">Yes</td>
        </tr><tr>
        <td>Fulltext Search</td>
        <td class="compareY">Yes</td>
        <td class="compareN">No</td>
        <td class="compareN">No</td>
        <td class="compareY">Yes</td>
        <td class="compareY">Yes</td>
        </tr><tr>
        <td>Multi Version Concurrency</td>
        <td class="compareY">Yes</td>
        <td class="compareN">No</td>
        <td class="compareN">No</td>
        <td class="compareN">No</td>
        <td class="compareY">Yes</td>
        </tr><tr>
        <td>Footprint (jar/dll size)</td>
        <td>~1 MB</td>
        <td>~2 MB</td>
        <td>~600 KB</td>
        <td>~4 MB</td>
        <td>~6 MB</td>
        </tr>
    </table>
    <p>
    See also the <a href="features.html#comparison">detailed comparison</a>.
    </p>
157 158 159 160 161
</td></tr>

<tr><td colspan="3" style="border: 0px; background-color: #eee;">
    <table style="border: 0px; margin: 0px 7px 0px 7px;">
        <tr><td style="border: 0px; background-color: #eee;">
162
            <h3 style="margin-top: 1em;">News</h3>
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
            <p>
            <b>Newsfeeds:</b>
            <a href="http://www.h2database.com/html/newsfeed-atom.xml">Full text (Atom)</a>
            or <a href="http://www.h2database.com/html/newsfeed-rss.xml">Header only (RSS)</a>.
            </p><p>
                <b>Email Newsletter:</b> Subscribe to
                <a href="http://groups.google.com/group/h2database-news/subscribe">
                H2 Database News (Google account required)</a>
                to get informed about new releases.
                Your email address is only used in this context.
            </p>
        </td></tr>
    </table>
</td></tr>

<tr><td colspan="3" style="border: 0px">&nbsp;</td></tr>

<tr><td colspan="3" style="border: 0px; background-color: #eee;">
    <table style="border: 0px; margin: 0px 7px 5px 7px;">
Thomas Mueller's avatar
Thomas Mueller committed
182
        <tr><td style="border: 0px; background-color: #eee;">
183
            <h3 style="margin-top: 1em;">Contribute</h3>
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
            <p>
            You can contribute to the development of H2 by sending feedback and bug
            reports, or translate the H2 Console application (for details, start the H2 Console
            and select Options / Translate).
            To donate money, click on the PayPal button below. You will be listed as a supporter:
            </p>
            <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
            <p>
            <input type="hidden" name="cmd" value="_s-xclick"/>
            <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but04.gif" name="submit" alt="PayPal"/>
            <img alt="" src="https://www.paypal.com/de_DE/i/scr/pixel.gif" width="1" height="1" />
            <input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----"/>
            </p>
            </form>
        </td></tr>
    </table>
</td></tr>

</table>

<!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html>