- 11 3月, 2011 5 次提交
-
-
由 Thomas Mueller 提交于
A query with an explicit LIMIT 0 will now return no rows (so far it meant no limit), which is compatible with PostgreSQL and MySQL. A negative limit value (as well as LIMIT NULL) mean no limit (so far a negative limit meant a limit of one row).
-
由 Thomas Mueller 提交于
A query with an explicit LIMIT 0 will now return no rows (so far it meant no limit), which is compatible with PostgreSQL and MySQL. A negative limit value (as well as LIMIT NULL) mean no limit (so far a negative limit meant a limit of one row).
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
- Only one space after a period (using two spaces is last century). - Rename dateClass to dateTimeClass - Rename *Clazz to *Class - Use more appropriate method names ("find" for me implies the method might return null) - Add missing Javadoc comments - Java field names can end with *Value, but *_value isn't Java style - Use appropriate variable names ("cn" isn't, "lower" is) - Use more appropriate method names (getClassForSqlType versus getClassType, createClassName versus convertTableToClassName, createFieldName versus convertColumnToFieldName)
-
由 Thomas Mueller 提交于
Lob in database: storing lob objects was not correctly synchronized. This was specially a problem when using Connection.createBlob() / createClob().
-
- 10 3月, 2011 9 次提交
-
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
Avoid importing java.io.File (the idea is to simplify verifying the file system abstraction is really used everywhere)
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
Lob in database: storing lob objects was not correctly synchronized. This was specially a problem when using Connection.createBlob() / createClob().
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
-
- 09 3月, 2011 2 次提交
-
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
The NIO cleaner hack wasn't working as expected, because the clear method was called instead of the clean method. This has been fixed. Please note this hack is not enabled by default, to try it you need to set the system property "h2.nioCleanerHack" to true.
-
- 07 3月, 2011 5 次提交
-
-
由 christian.peter.io 提交于
-
由 noelgrandin@gmail.com 提交于
-
由 noelgrandin@gmail.com 提交于
-
由 noelgrandin@gmail.com 提交于
-
由 noelgrandin@gmail.com 提交于
Added support for modulus operator in expressions
-
- 06 3月, 2011 2 次提交
-
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
Issue 288: Some right outer join queries failed to produce the correct result or threw exceptions such as "column x must be in the group by list". Some right outer joins with invalid column referenced (typos) threw a NullPointerException instead of "column not found" exception.
-
- 05 3月, 2011 5 次提交
-
-
由 Thomas Mueller 提交于
New database setting EARLY_FILTER to allow table implementations to apply filter conditions early on.
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
Cluster: in a two node cluster, if cluster node stopped, and autocommit was enabled, then changes on the remaining cluster node didn't get committed automatically.
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
-
- 04 3月, 2011 5 次提交
-
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
- the dialect detection will most likely be based on the URL, not on the class name - 'declaration' is a much too generic term for 'set column = value' - method names should start with a verb (getTableName instead of tableName) - remove redundancy and unnecessary formatting in Javadocs (keep it as simple as possible)
-
由 Thomas Mueller 提交于
-
- 03 3月, 2011 5 次提交
-
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
Issue 265: Linked tables: auto-reconnect if the backside connection is lost (workaround for the MySQL problem that disconnects after 8 hours of inactivity).
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
-
- 02 3月, 2011 2 次提交
-
-
由 Thomas Mueller 提交于
-
由 Thomas Mueller 提交于
Database-level connection settings could only be set in the database URL, but not using the Properties parameter of DriverManaget.getConnection(String url, Properties info).
-