提交 53f933d2 authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 034abb3c
...@@ -615,6 +615,7 @@ null and length constraint checks have been made; ...@@ -615,6 +615,7 @@ null and length constraint checks have been made;
but before other constraints have been checked. but before other constraints have been checked.
If there are multiple triggers, the order in which they are called is undefined. If there are multiple triggers, the order in which they are called is undefined.
ROLLBACK can be specified in combination with INSERT, UPDATE, and DELETE.
Only row based AFTER trigger can be called on ROLLBACK. Only row based AFTER trigger can be called on ROLLBACK.
Exceptions that occur within such triggers are ignored. Exceptions that occur within such triggers are ignored.
As the operations that occur within a trigger are part of the transaction, As the operations that occur within a trigger are part of the transaction,
......
...@@ -779,6 +779,10 @@ In a GUI, or in an XML file, only one backslash is required: ...@@ -779,6 +779,10 @@ In a GUI, or in an XML file, only one backslash is required:
"jdbc:h2:mem:test;INIT=create schema if not exists test\;runscript from '~/sql/populate.sql';DB_CLOSE_DELAY=-1" "jdbc:h2:mem:test;INIT=create schema if not exists test\;runscript from '~/sql/populate.sql';DB_CLOSE_DELAY=-1"
/> />
</pre> </pre>
<p>
Backslashed within the init script (for example within a runscript statement, to specify the folder names in Windows)
would need to be escaped as well (using a backslash). It might be simpler to avoid backslashes in folder names for this reason.
</p>
<h2 id="ignore_unknown_settings">Ignore Unknown Settings</h2> <h2 id="ignore_unknown_settings">Ignore Unknown Settings</h2>
<p> <p>
......
...@@ -31,6 +31,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>. ...@@ -31,6 +31,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>Enable Mode.supportOffsetFetch by default, so that "select 1 fetch first 1 row only" works. </li><li>Enable Mode.supportOffsetFetch by default, so that "select 1 fetch first 1 row only" works.
</li><li>The default user name should be an empty string and not "sa". </li><li>The default user name should be an empty string and not "sa".
</li><li>Deprecate Csv.getInstance() (use the public constructor instead). </li><li>Deprecate Csv.getInstance() (use the public constructor instead).
</li><li>Move ErrorCode class to org.h2.api.
</li></ul> </li></ul>
<h2>Priority 1</h2> <h2>Priority 1</h2>
...@@ -574,6 +575,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>. ...@@ -574,6 +575,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>Optimization: "select id from test" should use the index on id even without "order by". </li><li>Optimization: "select id from test" should use the index on id even without "order by".
</li><li>Issue 362: LIMIT support for UPDATE statements (MySQL compatibility). </li><li>Issue 362: LIMIT support for UPDATE statements (MySQL compatibility).
</li><li>Sybase SQL Anywhere compatibility: SELECT TOP ... START AT ... </li><li>Sybase SQL Anywhere compatibility: SELECT TOP ... START AT ...
</li><li>Use Java 6 SQLException subclasses.
</li></ul> </li></ul>
<h2>Not Planned</h2> <h2>Not Planned</h2>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论