提交 9bed4a26 authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 5c69455f
......@@ -20,13 +20,13 @@ Change Log
<h2>Next Version (unreleased)</h2>
<ul><li>Various CallableStatement methods could throw a NullPointerException.
</li><li>LOB files were not deleted when running DROP ALL OBJECTS.
</li><li>MS SQL Server compatibility: support string literals prefixed with N ("National Language" strings). Issue 240.
</li><li>MS SQL Server compatibility: support "N" in front of string literals ("National Language" strings). Issue 240.
</li><li>CAST: when converting a string to binary, it is hex encoded (every byte two characters);
a hex string can be converted to a number by first converting it to binary. Examples:
CAST(CAST('FFFF' AS BINARY) AS INT) = 65535, CAST(65535 AS BINARY) = '0000FFFF'.
a hex string can be converted to a number by first converting it to binary. Examples:
CAST(CAST('FFFF' AS BINARY) AS INT) = 65535, CAST(65535 AS BINARY) = '0000FFFF'.
</li><li>When a domain (user defined data type) contained a user defined function, the database could not be opened.
</li><li>CAST('011' AS INT) will no longer use decode the value as an octal number (using Integer.decode) but now use Integer.parseInt.
The same logic applied to byte, short, and long. This also means that trying to convert hex numbers (0x...) with CAST now fails.
The same logic applied to byte, short, and long. This also means that trying to convert hex numbers (0x...) with CAST now fails.
</li></ul>
<h2>Version 1.2.144 (2010-10-15)</h2>
......
......@@ -528,7 +528,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
disable autocommit for all connections.
</li><li>Compatibility with MS Access: support "&amp;" to concatenate text.
</li><li>The BACKUP statement should not synchronize on the database, and therefore should not block other users.
</li><li>Listener or authentication module for new connections, or a way to restrict the number of different connections to a tcp server,
</li><li>Listener or authentication module for new connections, or a way to restrict the number of different connections to a tcp server,
or to prevent to login with the same username and password from different IPs.
Possibly using the DatabaseEventListener API, or a new API.
</li></ul>
......
......@@ -57,7 +57,7 @@ public class TestCases extends TestBase {
if (config.memory) {
return;
}
testCheckContraintWithFunction();
testCheckConstraintWithFunction();
testDeleteAndDropTableWithLobs(true);
testDeleteAndDropTableWithLobs(false);
testEmptyBtreeIndex();
......@@ -85,7 +85,7 @@ public class TestCases extends TestBase {
deleteDb("cases");
}
private void testCheckContraintWithFunction() throws SQLException {
private void testCheckConstraintWithFunction() throws SQLException {
deleteDb("cases");
Connection conn = getConnection("cases");
Statement stat = conn.createStatement();
......
......@@ -658,4 +658,4 @@ skiing honor marketing sleeping dlucene timezones shifted analyzed insists
train joining bilingual existed extremely fog bordercolor overlapping
unlocking webkit dalvik recorded defrag marschall helping victor philippe
pyankov enctype multipart boundary mistake enlarge demonstrates aggregating
bypassing khtml doubled inlined defragmented
bypassing khtml doubled inlined defragmented registers
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论