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">
<!--
3
Copyright 2004-2010 H2 Group. Multiple-Licensed under the H2 License, Version 1.0,
4 5 6 7 8
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">
Thomas Mueller's avatar
Thomas Mueller committed
9 10 11
<head><meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="description" content="H2 is free SQL database written in Java"/>
<title>
12 13 14 15 16 17 18 19 20 21 22 23
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>
24
Welcome to H2, the Java SQL database. The main features of H2 are:
25 26
</p>
<ul>
Thomas Mueller's avatar
Thomas Mueller committed
27 28
<li>Very fast, open source, JDBC API
</li><li>Embedded and server modes; in-memory databases
29 30 31 32 33 34 35
</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
36
            <tr><td style="border: 0px; background-color: #eee;" colspan="2">
Thomas Mueller's avatar
Thomas Mueller committed
37
                <h2 style="margin-top: 1em;">Download</h2>
Thomas Mueller's avatar
Thomas Mueller committed
38
                Version ${version} (${versionDate}):
39 40
            </td></tr>
            <tr><td style="border: 0px; background-color: #eee;">
Thomas Mueller's avatar
Thomas Mueller committed
41
                <a href="http://www.h2database.com/h2-setup-${versionDate}.exe"><img style="border: 1px #00f solid;" src="images/download.png" alt="Download this database" width="22" height="20"/></a>
42
            </td><td style="vertical-align: middle; border: 0px; background-color: #eee;">
43
                <a href="http://www.h2database.com/h2-setup-${versionDate}.exe">Windows Installer (4 MB)</a>
44 45
            </td></tr>
            <tr><td style="border: 0px; background-color: #eee;">
Thomas Mueller's avatar
Thomas Mueller committed
46
                <a href="http://www.h2database.com/h2-${versionDate}.zip"><img style="border: 1px #00f solid;" src="images/download.png" alt="Download this database" width="22" height="20"/></a>
47
            </td><td style="vertical-align: middle; border: 0px; background-color: #eee;">
48
                <a href="http://www.h2database.com/h2-${versionDate}.zip">All Platforms (zip, 5 MB)</a>
49 50
            </td></tr>
            <tr><td style="border: 0px; background-color: #eee;" colspan="2">
Thomas Mueller's avatar
Thomas Mueller committed
51
                <a href="download.html">All Downloads</a>
52 53 54 55 56 57 58
            </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;">
Thomas Mueller's avatar
Thomas Mueller committed
59
                <h2 style="margin-top: 1em;">Support</h2>
60 61 62
                <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 />
63
                    For non-technical issues, use: <br />
64 65
                    <script type="text/javascript">
                    <!--
Thomas Mueller's avatar
Thomas Mueller committed
66 67 68 69 70 71 72 73
                    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)';
74
                    document.write('<' + 'a h'+'ref="em' + 'ail:' + d + c + e + g + f +'">' + d + c + e + g + f + '<' + '/a>');
75 76 77 78 79 80 81 82
                    //-->
                    </script>
                </p>
            </td></tr>
        </table>
    </td></tr>

<tr><td colspan="3" style="border: 0px; padding: 5px 0px 15px 0px;">
Thomas Mueller's avatar
Thomas Mueller committed
83
    <h2 style="margin-top: 1em;">Features</h2>
84
    <table style="width: 425px;"><tr class="notranslate">
85 86
        <th></th>
        <th>H2</th>
Thomas Mueller's avatar
Thomas Mueller committed
87 88 89 90
        <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>
91 92 93 94 95 96 97 98
        </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
99
        <td>Memory Mode</td>
100
        <td class="compareY">Yes</td>
Thomas Mueller's avatar
Thomas Mueller committed
101
        <td class="compareY">Yes</td>
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
        <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>
145
        <td class="compareY">Yes</td>
146 147 148 149 150 151 152 153 154 155 156 157 158
        <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>
159 160 161 162 163
</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;">
Thomas Mueller's avatar
Thomas Mueller committed
164
            <h2 style="margin-top: 1em;">News</h2>
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
            <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
184
        <tr><td style="border: 0px; background-color: #eee;">
Thomas Mueller's avatar
Thomas Mueller committed
185
            <h2 style="margin-top: 1em;">Contribute</h2>
186 187 188 189 190 191 192 193 194
            <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"/>
Thomas Mueller's avatar
Thomas Mueller committed
195
            <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but04.gif" name="submit" alt="PayPal icon"/>
196 197 198 199 200 201 202 203 204 205
            <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>