提交 b6ea5cc6 authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 003003e6
...@@ -18,7 +18,12 @@ Change Log ...@@ -18,7 +18,12 @@ Change Log
<h1>Change Log</h1> <h1>Change Log</h1>
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<ul><li>When using the built-in connection pool, connections were not rolled back and <ul><li>Queries that are ordered by an indexed column returned no rows in certain cases
(if all rows were deleted from the table previously, and there is a low number of rows
in the table, and when not using other conditions, and when using the default b tree index).
</li><li>The wrong exception was thrown when using unquoted text for
the SQL statements COMMENT, ALTER USER, and SET PASSWORD.
</li><li>When using the built-in connection pool, connections were not rolled back and
autocommit was not enabled after closing a connection. Fixed. autocommit was not enabled after closing a connection. Fixed.
</li><li>Sometimes a StackOverflow occurred when checking for deadlock. See also </li><li>Sometimes a StackOverflow occurred when checking for deadlock. See also
http://code.google.com/p/h2database/issues/detail?id=61 http://code.google.com/p/h2database/issues/detail?id=61
......
...@@ -18,6 +18,7 @@ pre { ...@@ -18,6 +18,7 @@ pre {
body { body {
margin: 0px; margin: 0px;
max-width: 800px;
} }
h1 { h1 {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -106,8 +106,9 @@ implements XAConnection, XAResource ...@@ -106,8 +106,9 @@ implements XAConnection, XAResource
//## Java 1.4 end ## //## Java 1.4 end ##
/** /**
* Get a connection that is a handle to the physical connection. This method is usually called by the connection * Get a connection that is a handle to the physical connection. This method
* pool. This method closes the last connection handle if one exists. * is usually called by the connection pool. This method closes the last
* connection handle if one exists.
* *
* @return the connection * @return the connection
*/ */
......
...@@ -106,7 +106,8 @@ RUNSCRIPT FROM 'backup' ...@@ -106,7 +106,8 @@ RUNSCRIPT FROM 'backup'
" "
"Commands (DML)","SCRIPT"," "Commands (DML)","SCRIPT","
SCRIPT [SIMPLE] [NODATA] [NOPASSWORDS] [NOSETTINGS] [DROP] [BLOCKSIZE blockSizeInt] SCRIPT [SIMPLE] [NODATA] [NOPASSWORDS] [NOSETTINGS]
[DROP] [BLOCKSIZE blockSizeInt]
[TO fileNameString [TO fileNameString
[COMPRESSION {DEFLATE|LZF|ZIP|GZIP}] [COMPRESSION {DEFLATE|LZF|ZIP|GZIP}]
[CIPHER cipher PASSWORD string]] [CIPHER cipher PASSWORD string]]
...@@ -364,7 +365,8 @@ CREATE AGGREGATE MEDIAN FOR ""com.acme.db.Median"" ...@@ -364,7 +365,8 @@ CREATE AGGREGATE MEDIAN FOR ""com.acme.db.Median""
" "
"Commands (DDL)","CREATE ALIAS"," "Commands (DDL)","CREATE ALIAS","
CREATE ALIAS [IF NOT EXISTS] newFunctionAliasName [DETERMINISTIC] FOR classAndMethodName CREATE ALIAS [IF NOT EXISTS] newFunctionAliasName [DETERMINISTIC]
FOR classAndMethodName
"," ","
Creates a new function alias. The method name must be the full qualified class and method name, Creates a new function alias. The method name must be the full qualified class and method name,
and may optionally include the parameter classes as in ""java.lang.Integer.parseInt(java.lang.String, int)""). and may optionally include the parameter classes as in ""java.lang.Integer.parseInt(java.lang.String, int)"").
...@@ -1892,7 +1894,8 @@ COUNT(*) ...@@ -1892,7 +1894,8 @@ COUNT(*)
" "
"Functions (Aggregate)","GROUP_CONCAT"," "Functions (Aggregate)","GROUP_CONCAT","
GROUP_CONCAT([DISTINCT] string [ORDER BY {expression [ASC|DESC]}[,...]] [SEPARATOR expression]): string GROUP_CONCAT([DISTINCT] string [ORDER BY {expression [ASC|DESC]}[,...]]
[SEPARATOR expression]): string
"," ","
Concatenates strings with a separator. The default separator is a ',' (without space). Concatenates strings with a separator. The default separator is a ',' (without space).
If no rows are selected, the result is NULL. If no rows are selected, the result is NULL.
...@@ -2862,8 +2865,8 @@ CURRVAL('TEST_SEQ') ...@@ -2862,8 +2865,8 @@ CURRVAL('TEST_SEQ')
" "
"Functions (System)","CSVREAD"," "Functions (System)","CSVREAD","
CSVREAD(fileNameString [, columnNamesString [, charsetString [, fieldSeparatorString [, fieldDelimiterString CSVREAD(fileNameString [, columnNamesString [, charsetString [, fieldSeparatorString
[, escapeCharacterString [, nullString]]]]]]): resultSet [, fieldDelimiterString [, escapeCharacterString [, nullString]]]]]]): resultSet
"," ","
Returns the result set of reading the CSV (comma separated values) file. Returns the result set of reading the CSV (comma separated values) file.
For each parameter, NULL means the default value should be used. For each parameter, NULL means the default value should be used.
...@@ -2884,8 +2887,9 @@ SELECT * FROM CSVREAD('data/test.csv', NULL, NULL, ';'); ...@@ -2884,8 +2887,9 @@ SELECT * FROM CSVREAD('data/test.csv', NULL, NULL, ';');
" "
"Functions (System)","CSVWRITE"," "Functions (System)","CSVWRITE","
CSVWRITE(fileNameString, queryString [, charsetString [, fieldSeparatorString [, fieldDelimiterString CSVWRITE(fileNameString, queryString [, charsetString [, fieldSeparatorString
[, escapeCharacterString [, nullString [, lineSeparatorString]]]]]]): int [, fieldDelimiterString [, escapeCharacterString [, nullString
[, lineSeparatorString]]]]]]): int
"," ","
Writes a CSV (comma separated values). Writes a CSV (comma separated values).
The file is overwritten if it exists. The file is overwritten if it exists.
......
...@@ -519,7 +519,7 @@ public class Shell extends Tool { ...@@ -519,7 +519,7 @@ public class Shell extends Tool {
println(buff.toString()); println(buff.toString());
} }
if (truncated) { if (truncated) {
println("(data is partically truncated)"); println("(data is partially truncated)");
} }
return rowCount; return rowCount;
} }
......
...@@ -282,13 +282,11 @@ java org.h2.test.TestAll timer ...@@ -282,13 +282,11 @@ java org.h2.test.TestAll timer
/* /*
website: remove redirect automated tests (status on web site)
Check JBoss and Spring support models documentation: rolling review at tutorial.html:701
Move issues to the roadmap
documentation: rolling review at roadmap.html:done test web site with firefox 3, internet explorer, opera, safari, google chrome
create a short 4 pages documentation create a short 4 pages documentation
...@@ -301,7 +299,12 @@ postgresql generate_series? ...@@ -301,7 +299,12 @@ postgresql generate_series?
multithreaded kernel multithreaded kernel
remove old TODO remove old TODO
test web site with firefox 3, internet explorer, opera, safari, google chrome Check JBoss and Spring support models
http://wiki.bonita.ow2.org/xwiki/bin/view/Main/BullOffer
- starting 2500 euros / year
- unlimited support requests
- 2 named contacts
- optional half days of technical aid by remote services
auto_reconnect auto_reconnect
implemented: implemented:
......
...@@ -139,6 +139,15 @@ public class GenerateDoc { ...@@ -139,6 +139,15 @@ public class GenerateDoc {
// syntax = StringUtils.replaceAll(syntax, "<br />", " "); // syntax = StringUtils.replaceAll(syntax, "<br />", " ");
syntax = bnf.getSyntaxHtml(syntax); syntax = bnf.getSyntaxHtml(syntax);
map.put("syntax", syntax); map.put("syntax", syntax);
// remove newlines in the regular text
// currently this looks bad (no paragraphs, no lists)
// String text = (String) map.get("text");
// if (text != null) {
// text = StringUtils.replaceAll(text, "<br />", " ");
// map.put("text", text);
// }
String link = topic.toLowerCase(); String link = topic.toLowerCase();
link = StringUtils.replaceAll(link, " ", ""); link = StringUtils.replaceAll(link, " ", "");
link = StringUtils.replaceAll(link, "_", ""); link = StringUtils.replaceAll(link, "_", "");
......
...@@ -584,4 +584,5 @@ grails reloading slightly accepting deploying conflicting recovered counters ...@@ -584,4 +584,5 @@ grails reloading slightly accepting deploying conflicting recovered counters
versus extracts squirrel misdirected rle looking arc addressed european versus extracts squirrel misdirected rle looking arc addressed european
soerensen favicon glass restarts flexive fish resulted vpda mvc kotek jan soerensen favicon glass restarts flexive fish resulted vpda mvc kotek jan
consistently springfuse grep signatures wrote symbolic parents caches readers consistently springfuse grep signatures wrote symbolic parents caches readers
animate scaladoc models disadvantages vladykin sergi trims animate scaladoc models disadvantages vladykin sergi trims requesting
\ No newline at end of file handing bonita placed euros
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论