@@ -491,7 +491,7 @@ Afterwards, you may use this data source.
PG Protocol Support Limitations
@advanced_1164_p
At this time, only a subset of the PostgreSQL network protocol is implemented. Also, there may be compatibility problems on the SQL level, with the catalog, or with text encoding. Problems are fixed as they are found. Currently, statements can not be cancelled when using the PG protocol.
At this time, only a subset of the PostgreSQL network protocol is implemented. Also, there may be compatibility problems on the SQL level, with the catalog, or with text encoding. Problems are fixed as they are found. Currently, statements can not be canceled when using the PG protocol.
@advanced_1165_p
PostgreSQL ODBC Driver Setup requires a database password; that means it is not possible to connect to H2 databases without password. This is a limitation of the ODBC driver.
...
...
@@ -1403,7 +1403,7 @@ Triggers are no longer executed when changing the table structure (ALTER TABLE
When setting BLOB or CLOB values larger than 65 KB using a remote connection, temporary files were kept on the client longer than required (until the connection was closed or the object is garbage collected). Now they are removed as soon as the PreparedStatement is closed, or when the value is overwritten.
@changelog_1100_li
Statements can now be cancelled remotely (when using remote connections).
Statements can now be canceled remotely (when using remote connections).
@changelog_1101_li
The Shell tool now uses java.io.Console to read the password when using JDK 1.6
...
...
@@ -1613,7 +1613,7 @@ When using a view, the column precision was changed to the default scale for som
CSVWRITE now supports a 'null string' that is used for parsing and writing NULL.
@changelog_1170_li
Some long running queries could not be cancelled.
Some long running queries could not be canceled.
@changelog_1171_li
Queries with many outer join tables were very slow. Fixed.
#When setting BLOB or CLOB values larger than 65 KB using a remote connection, temporary files were kept on the client longer than required (until the connection was closed or the object is garbage collected). Now they are removed as soon as the PreparedStatement is closed, or when the value is overwritten.
@changelog_1100_li
#Statements can now be cancelled remotely (when using remote connections).
#Statements can now be canceled remotely (when using remote connections).
@changelog_1101_li
#The Shell tool now uses java.io.Console to read the password when using JDK 1.6
...
...
@@ -1615,7 +1615,7 @@ Centralリポジトリの利用
#CSVWRITE now supports a 'null string' that is used for parsing and writing NULL.
@changelog_1170_li
#Some long running queries could not be cancelled.
#Some long running queries could not be canceled.
@changelog_1171_li
#Queries with many outer join tables were very slow. Fixed.
advanced_1162_p=Afterwards, you may use this data source.
advanced_1163_h3=PG Protocol Support Limitations
advanced_1164_p=At this time, only a subset of the PostgreSQL network protocol is implemented. Also, there may be compatibility problems on the SQL level, with the catalog, or with text encoding. Problems are fixed as they are found. Currently, statements can not be cancelled when using the PG protocol.
advanced_1164_p=At this time, only a subset of the PostgreSQL network protocol is implemented. Also, there may be compatibility problems on the SQL level, with the catalog, or with text encoding. Problems are fixed as they are found. Currently, statements can not be canceled when using the PG protocol.
advanced_1165_p=PostgreSQL ODBC Driver Setup requires a database password; that means it is not possible to connect to H2 databases without password. This is a limitation of the ODBC driver.
advanced_1166_h3=Security Considerations
advanced_1167_p=Currently, the PG Server does not support challenge response or encrypt passwords. This may be a problem if an attacker can listen to the data transferred between the ODBC driver and the server, because the password is readable to the attacker. Also, it is currently not possible to use encrypted SSL connections. Therefore the ODBC driver should not be used where security is important.
...
...
@@ -466,7 +466,7 @@ changelog_1096_li=SLF4J is now supported by using adding TRACE_LEVEL_FILE\=4 t
changelog_1097_li=The recovery tool did not work if the table name contained spaces or if there was a comment on the table.
changelog_1098_li=Triggers are no longer executed when changing the table structure (ALTER TABLE).
changelog_1099_li=When setting BLOB or CLOB values larger than 65 KB using a remote connection, temporary files were kept on the client longer than required (until the connection was closed or the object is garbage collected). Now they are removed as soon as the PreparedStatement is closed, or when the value is overwritten.
changelog_1100_li=Statements can now be cancelled remotely (when using remote connections).
changelog_1100_li=Statements can now be canceled remotely (when using remote connections).
changelog_1101_li=The Shell tool now uses java.io.Console to read the password when using JDK 1.6
changelog_1102_li=When using read-only databases and setting LOG\=2, an exception was written to the trace file when closing the database. Fixed.
changelog_1103_h2=Version 1.0.71 (2008-04-25)
...
...
@@ -536,7 +536,7 @@ changelog_1166_li=Random\: the process didn't stop if generating the random seed
changelog_1167_li=SELECT UNION with a different number of ORDER BY columns did throw an ArrayIndexOutOfBoundsException.
changelog_1168_li=When using a view, the column precision was changed to the default scale for some data types.
changelog_1169_li=CSVWRITE now supports a 'null string' that is used for parsing and writing NULL.
changelog_1170_li=Some long running queries could not be cancelled.
changelog_1170_li=Some long running queries could not be canceled.
changelog_1171_li=Queries with many outer join tables were very slow. Fixed.
changelog_1172_li=The performance of text comparison has been improved when using locale sensitive string comparison (SET COLLATOR). Now CollationKey is used with a LRU cache. The default cache size is 10000, and can be changed using the system property h2.collatorCacheSize. Use 0 to disable the cache.
changelog_1173_li=UPDATE SET column\=DEFAULT is now supported.