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

--no commit message

--no commit message
上级 5feca64f
#Sun Jul 29 20:39:45 CEST 2007
#Fri Aug 24 22:06:59 CEST 2007
javac=javac
benchmark.drivers.dir=C\:/data/java
path.servlet.jar=C\:/data/classpath/servlet-api.jar
version.name.maven=1.0.20070712
version.name.maven=1.0.20080825
jdk=1.4
......@@ -39,11 +39,12 @@ Frequently Asked Questions
<p>
Usually, bugs get fixes as they are found. There is a release every few weeks.
Here is the list of known and confirmed issues as of
2007-08-02:
2007-08-25:
</p>
<ul>
<li>Some problems have been found with right outer join. Internally, it is converted to left outer join, which
does not always produce the same results as other databases when used in combination with other joins.
</li><li>Using a CAST in a GROUP BY expression that is used in a view does not always work.
</li></ul>
<br /><a name="open_source"></a>
......
......@@ -39,7 +39,7 @@ Hypersonic SQL or HSQLDB. H2 is built from scratch.
<h3>Version 1.0 (Current)</h3>
<h3>Version 1.0 / TODO (Build xx)</h3><ul>
<h3>Version 1.0 / 2008-08-25 (Build 57)</h3><ul>
<li>New experimental feature MVCC (multi version concurrency control).
Can be set as a option when opening the database (jdbc:h2:test;MVCC=TRUE)
or as a system property (-Dh2.mvcc=true). This is work-in-progress, use it at your own risk. Feedback is welcome.
......
......@@ -7171,1086 +7171,3 @@ Kompilieren
@tutorial_1131_p
#When using Java Web Start / JNLP (Java Network Launch Protocol), permissions tags must be set in the .jnlp file, and the application .jar file must be signed. Otherwise, when trying to write to the file system, the following exception will occur: java.security.AccessControlException: access denied (java.io.FilePermission ... read). Example permission tags:
@~faq_1010_h3
#Are there any known bugs? When is the next release?
@~faq_1011_p
#Usually, bugs get fixes as they are found. There is a release every few weeks. Here is the list of known and confirmed issues as of 2007-08-02:
@~faq_1012_li
#Some problems have been found with right outer join. Internally, it is converted to left outer join, which does not always produce the same results as other databases when used in combination with other joins.
@~faq_1013_h3
#Is this Database Engine Open Source?
@~faq_1014_p
#Yes. It is free to use and distribute, and the source code is included. See also under license.
@~faq_1015_h3
#My query is slow
@~faq_1016_p
#Slow SELECT (or DELETE, UPDATE, MERGE) statement can have multiple reasons. Follow this checklist:
@~faq_1017_li
#Run ANALYSE (see documentation for details).
@~faq_1021_h3
#How to Create a New Database?
@~faq_1022_p
#By default, a new database is automatically created if it does not yet exist.
@~faq_1023_h3
#How to Connect to a Database?
@~faq_1024_p
#The database driver is <code>org.h2.Driver</code> , and the database URL starts with <code>jdbc:h2:</code> . To connect to a database using JDBC, use the following code:
@~faq_1025_h3
#Where are the Database Files Stored?
@~faq_1026_p
#When using database URLs like jdbc:h2:~/test, the database is stored in the user directory. For Windows, this is usually C:\Documents and Settings\&lt;userName&gt;. If the base directory is not set (as in jdbc:h2:test), the database files are stored in the directory where the application is started (the current working directory). When using the H2 Console application from the start menu, this is [Installation Directory]/bin. The base directory can be set in the database URL. A fixed or relative path can be used. When using the URL jdbc:h2:file:data/sample, the database is stored in the directory data (relative to the current working directory). The directory must exist. It is also possible to use the fully qualified directory (and for Windows, drive) name. Example: jdbc:h2:file:C:/data/test
@~faq_1027_h3
#What is the Size Limit (maximum size) of a Database?
@~faq_1028_p
#The theoretical limit is currently 256 GB for the data. This number is excluding BLOB and CLOB data: Every CLOB or BLOB can be up to 256 GB as well. The size limit of the index data is 256 GB as well.
@~faq_1030_h3
#Is it Reliable?
@~faq_1031_p
#That is not easy to say. It is still a quite new product. A lot of tests have been written, and the code coverage of these tests is very high. Randomized stress tests are run regularly. But as this is a relatively new product, there are probably some problems that have not yet been found. Areas that are not 100% tested:
@~faq_1032_li
#Platforms other than Windows XP and the Sun JVM 1.4 and 1.5
@~faq_1044_p
#Areas considered Experimental:
@~faq_1045_li
#ODBC driver and the GCJ native version on Windows
@~faq_1049_h3
#Is the GCJ version stable? Faster?
@~faq_1050_p
#The GCJ version is not as stable as the Java version. When running the regression test with the GCJ version, sometimes the application just stops at what seems to be a random point without error message. Currently, the GCJ version is also slower than when using the Sun VM. However, the startup of the GCJ version is faster than when using a VM.
@~features_1202_h2
#Connection Modes
@~features_1203_p
#The following connection modes are supported:
@~features_1204_li
#Local connections using JDBC (embedded)
@~features_1205_li
#Remote connections using JDBC over TCP/IP (client/server)
@~features_1208_h2
#Database URL Overview
@~features_1209_p
#This database does support multiple connection modes and features when connecting to a database. This is achieved using different database URLs. The settings in the URLs are not case sensitive.
@~features_1210_th
#Topic
@~features_1211_th
#URL Format and Examples
@~features_1212_td
#Embedded (local) connection
@~features_1213_td
#jdbc:h2:[file:][&lt;path&gt;]&lt;databaseName&gt;
@~features_1258_h3
#Connecting to an Embedded (Local) Database
@~features_1259_p
#The database URL for connecting to a local database is <code>jdbc:h2:[file:][&lt;path&gt;]&lt;databaseName&gt;</code> . The prefix <code>file:</code> is optional. If no or only a relative path is used, then the current working directory is used as a starting point. The case sensitivity of the path and database name depend on the operating system, however it is suggested to use lowercase letters only. The database name must be at least three characters long (a limitation of File.createTempFile). To point to the user home directory, use ~/, as in: jdbc:h2:~/test.
@~features_1262_p
#In some cases, only one connection to a memory-only database is required. This means the database to be opened is private. In this case, the database URL is <code>jdbc:h2:mem:</code> Opening two connections within the same virtual machine means opening two different (private) databases.
@~features_1265_h2
#Connecting to a Database with File Encryption
@~features_1269_p
#The following file locking methods are implemented:
@~features_1270_li
#The default method is 'file' and uses a watchdog thread to protect the database file. The watchdog reads the lock file each second.
@~features_1271_li
#The second method is 'socket' and opens a server socket. The socket method does not require reading the lock file every second. The socket method should only be used if the database files are only accessed by the one (and always the same) computer.
@~features_1273_p
#To open the database with a different file locking method, use the parameter 'FILE_LOCK'. The following code opens the database with the 'socket' locking method:
@~features_1274_p
#The following code forces the database to not create a lock file at all. Please note that this is unsafe as another process is able to open the same database, possibly leading to data corruption:
@~features_1276_h2
#Opening a Database Only if it Already Exists
@~features_1279_h3
#Delayed Database Closing
@~features_1280_p
#Usually, the database is closed when the last connection to it is closed. In some situations this slows down the application, for example when it is not possible leave the connection open. The automatic closing of the database can be delayed or disabled with the SQL statement SET DB_CLOSE_DELAY &lt;seconds&gt;. The seconds specifies the number of seconds to keep a database open after the last connection to it was closed. For example the following statement will keep the database open for 10 seconds:
@~features_1281_p
#The value -1 means the database is never closed automatically. The value 0 is the default and means the database is closed when the last connection is closed. This setting is persistent and can be set by an administrator only. It is possible to set the value in the database URL: <code>jdbc:h2:~/test;DB_CLOSE_DELAY=10</code> .
@~features_1282_h3
#Don't Close the Database when the VM Exits
@~features_1284_h2
#Log Index Changes
@~features_1286_h3
#Ignore Unknown Settings
@~features_1290_h2
#Custom File Access Mode
@~features_1292_p
#For more information see <a href="advanced.html#durability_problems">Durability Problems</a> . On many operating systems the access mode 'rws' does not guarantee that the data is written to the disk.
@~features_1293_h2
#Multiple Connections
@~features_1294_h3
#Opening Multiple Databases at the Same Time
@~features_1295_p
#An application can open multiple databases at the same time, including multiple connections to the same database. The number of open database is only limited by the memory available.
@~features_1302_p
#Usually, SELECT statement will generate read locks. This includes subqueries. Statements that modify data use write locks. It is also possible to lock a table exclusively without modifying data, using the statement SELECT ... FOR UPDATE. The statements COMMIT and ROLLBACK releases all open locks. The commands SAVEPOINT and ROLLBACK TO SAVEPOINT don't affect locks. The locks are also released when the autocommit mode changes, and for connections with autocommit set to true (this is the default), locks are released after each statement. Here is an overview on what statements generate what type of lock:
@~features_1303_th
#Type of Lock
@~features_1304_th
#SQL Statement
@~features_1305_td
#Read
@~features_1306_td
#SELECT * FROM TEST
@~features_1320_p
#The number of seconds until a lock timeout exception is thrown can be set separately for each connection using the SQL command SET LOCK_TIMEOUT &lt;milliseconds&gt;. The initial lock timeout (that is the timeout used for new connections) can be set using the SQL command SET DEFAULT_LOCK_TIMEOUT &lt;milliseconds&gt;. The default lock timeout is persistent.
@~features_1321_h2
#Database File Layout
@~features_1323_th
#File Name
@~features_1324_th
#Description
@~features_1326_td
#test.data.db
@~features_1327_td
#Data file
@~features_1367_h3
#Moving and Renaming Database Files
@~features_1368_p
#Database name and location are not stored inside the database names.
@~features_1369_p
#While a database is closed, the files can be moved to another directory, and they can be renamed as well (as long as all files start with the same name).
@~features_1371_h3
#Backup
@~features_1373_p
#To backup data while the database is running, the SQL command SCRIPT can be used.
@~features_1374_h2
#Logging and Recovery
@~features_1376_p
#Please note that index file updates are not logged by default. If the database is opened and recovery is required, the index file is rebuilt from scratch.
@~features_1379_h2
#Compatibility Modes
@~features_1381_th
#Mode
@~features_1382_th
#Differences
@~features_1383_td
#PostgreSQL
@~features_1384_td
#Concatenation of a NULL with another value results in NULL. Usually, the NULL is treated as an empty string if only one of the operators is NULL, and NULL is only returned if both values are NULL.
@~features_1389_h2
#Using the Trace Options
@~features_1390_p
#To find problems in an application, it is sometimes good to see what database operations where executed. This database offers the following trace features:
@~features_1391_li
#Trace to System.out and/or a file
@~features_1392_li
#Support for trace levels OFF, ERROR, INFO, and DEBUG
@~features_1396_h3
#Trace Options
@~features_1397_p
#The simplest way to enable the trace option is setting it in the database URL. There are two settings, one for System.out (TRACE_LEVEL_SYSTEM_OUT) tracing, and one for file tracing (TRACE_LEVEL_FILE). The trace levels are 0 for OFF, 1 for ERROR (the default), 2 for INFO and 3 for DEBUG. A database URL with both levels set to DEBUG is:
@~features_1398_p
#The trace level can be changed at runtime by executing the SQL command <code>SET TRACE_LEVEL_SYSTEM_OUT level</code> (for System.out tracing) or <code>SET TRACE_LEVEL_FILE level</code> (for file tracing). Example:
@~features_1399_h3
#Setting the Maximum Size of the Trace File
@~features_1403_p
#You need to filter out the lines without /**/ to get the Java source code. In Windows, a simple way to do that is:
@~features_1406_h3
#Enabling the Trace Option at Runtime by Manually Creating a File
@~features_1408_p
#Example: if a database is called 'test', then the file to start tracing is 'test.trace.db.start'. The database engine tries to delete this file when it detects it. If trace is enabled using the start file, the trace level is not persistent to the database, and trace is switched back to the level that was set before when connecting to the database. However, if the start file is read only, the database engine cannot delete the file and will always enable the trace mode when connecting.
@~features_1409_h2
#Read Only Databases
@~features_1415_p
#It is possible to install a database event listener to detect low disk space situations early on (when only 1 MB if space is available). To do this, use the SQL statement SET DATABASE_EVENT_LISTENER. The listener can also be set at connection time, using an URL of the form jdbc:h2:~/test;DATABASE_EVENT_LISTENER='com.acme.DbListener' (the quotes around the class name are required). See also the DatabaseEventListener API.
@~features_1416_h3
#Opening a Corrupted Database
@~features_1418_h2
#Computed Columns / Function Based Index
@~features_1420_p
#When inserting data, it is not required (better: not allowed) to specify a value for the upper-case version of the column, because the value is generated. But you can use the column when querying the table:
@~features_1421_h2
#Multi-Dimensional Indexes
@~features_1423_p
#Currently, Z-order (also called N-order or Morton-order) is used; Hilbert curve could also be used, but the implementation is more complex. The algorithm to convert the multi-dimensional value is called bit-interleaving. The scalar value is indexed using a B-Tree index (usually using a computed column).
@~features_1425_h2
#Using Passwords
@~features_1426_h3
#Using Secure Passwords
@~features_1427_p
#Remember that weak passwords can be broken no matter of the encryption and security protocol. Don't use passwords that can be found in a dictionary. Also appending numbers does not make them secure. A way to create good passwords that can be remembered is, take the first letters of a sentence, use upper and lower case characters, and creatively include special characters. Example:
@~features_1428_p
#i'sE2rtPiUKtT (it's easy to remember this password if you know the trick)
@~features_1429_h3
#Passwords: Using Char Arrays instead of Strings
@~features_1431_p
#An attacker might have access to the swap file of the operating system. It is therefore a good idea to use char arrays instead of Strings to store passwords. Char arrays can be cleared (filled with zeros) after use, and therefore the password will not be stored in the swap file.
@~features_1434_h3
#Passing the User Name and/or Password in the URL
@~features_1436_h2
#User Defined Functions and Stored Procedures
@~features_1438_p
#The Java function must be registered in the database by calling CREATE ALIAS:
@~features_1440_h3
#Function Data Type Mapping
@~features_1452_h2
#Triggers
@~features_1454_p
#The connection can be used to query or update data in other tables. The trigger then needs to be defined in the database:
@~features_1456_h2
#Compacting a Database
@~features_1458_p
#See also the sample application org.h2.samples.Compact. The commands SCRIPT / RUNSCRIPT can be used as well to create the a backup of a database and re-build the database from the script.
@~features_1459_h2
#Cache Settings
@~features_1461_p
#This database supports two cache page replacement algorithms: LRU (the default) and 2Q. For LRU, the pages that were least frequently used are removed from the cache if it becomes full. The 2Q algorithm is a bit more complicated, basically two queues are used. The 2Q algorithm is more resistant to table scans, however the overhead is a bit higher compared to the LRU. To use the cache algorithm 2Q, use a database URL of the form jdbc:h2:~/test;CACHE_TYPE=TQ. The cache algorithm can not be changed once the database is open.
@~features_1463_h2
#Why Java
@~features_1465_li
#Very simple to integrate in Java applications
@~features_1466_li
#Support for many different platforms
@~features_1470_p
#Some people think that Java is still too slow for low level operations, but this is not the case (not any more). In general, the code can be written a lot faster than using C or C++. Like that, it is possible to concentrate on improving the algorithms (that make the application faster) rather than porting the code and dealing with low level stuff (such as memory management or dealing with threads). Garbage collection is now probably faster than manual memory management.
@~features_1471_p
#A lot of features are already built in (for example Unicode, network libraries). It is very easy to write secure code because buffer overflows and such problems can be detected very easily. Some features such as the reflection mechanism can be used for randomized testing.
@~history_1023_h3
#Version 1.0 / 2007-08-02 (Build 56)
@~history_1029_h3
#Version 1.0 / 2007-08-02 (Build 56)
@~history_1029_li
#A server that implements the PostgreSQL protocol is now included and documented. That means, the PostgreSQL ODBC driver can be used to access a H2 database. See in the documentation for details.
@~history_1030_h3
#Version 1.0 / 2007-08-02 (Build 56)
@~history_1030_li
#A new tool to help translation has been implemented: src/tools/org/h2/tools/i18n/PrepareTranslation. This tool can detect delta changes in the original (English) and prepends '#' in translation if the original text was changed. It can also extract text from the user documentation (however, it is incomplete).
@~history_1031_h3
#Version 1.0 / 2007-08-02 (Build 56)
@~history_1031_li
#A new tool to help translation has been implemented: src/tools/org/h2/tools/i18n/PrepareTranslation. This tool can detect delta changes in the original (English) and prepends '#' in translation if the original text was changed. It can also extract text from the user documentation (however, it is incomplete).
@~history_1032_li
#A new tool to help translation has been implemented: src/tools/org/h2/tools/i18n/PrepareTranslation. This tool can detect delta changes in the original (English) and prepends '#' in translation if the original text was changed. It can also extract text from the user documentation (however, it is incomplete).
@~history_1050_h3
#Version 1.0 / 2007-07-12 (Build 55)
@~history_1056_h3
#Version 1.0 / 2007-07-12 (Build 55)
@~history_1056_li
#New column ID for INFORMATION_SCHEMA.INDEXES, SEQUENCES, USERS, ROLES, RIGHTS, FUNCTION_ALIASES, SCHEMATA, VIEWS, CONSTRAINTS, CONSTANTS, DOMAINS, TRIGGERS.
@~history_1057_h3
#Version 1.0 / 2007-07-12 (Build 55)
@~history_1057_li
#Support for the system property baseDir. This works for embedded databases as well. The setting is supported by the H2 Console using -Dh2.baseDir or -baseDir
@~history_1058_h3
#Version 1.0 / 2007-07-12 (Build 55)
@~history_1058_li
#Support for the system property baseDir. This works for embedded databases as well. The setting is supported by the H2 Console using -Dh2.baseDir or -baseDir
@~history_1059_li
#Support for the system property baseDir. This works for embedded databases as well. The setting is supported by the H2 Console using -Dh2.baseDir or -baseDir
@~history_1076_h3
#Version 1.0 / 2007-06-17 (Build 50)
@~history_1082_h3
#Version 1.0 / 2007-06-17 (Build 50)
@~history_1082_li
#Views support has been partially re-implemented. Views are up to 6 times faster. Compared to regular queries, only 20% overhead. Because this is a bigger change, it is not enabled by default. To enable it, set the system property 'h2.indexNew' to true (java -Dh2.indexNew=true ..., or in source code Constants.INDEX_NEW = true). If no problems are found, this will be enabled by default in the next release.
@~history_1083_h3
#Version 1.0 / 2007-06-17 (Build 50)
@~history_1083_li
#File names starting with ~ are now in the user directory (Java system property user.home)
@~history_1084_h3
#Version 1.0 / 2007-06-17 (Build 50)
@~history_1084_li
#File names starting with ~ are now in the user directory (Java system property user.home)
@~history_1085_li
#File names starting with ~ are now in the user directory (Java system property user.home)
@~history_1101_h3
#Version 1.0 / 2007-04-29 (Build 46)
@~history_1107_h3
#Version 1.0 / 2007-04-29 (Build 46)
@~history_1107_li
#SimpleResultSet now has some basic data type conversion features.
@~history_1108_h3
#Version 1.0 / 2007-04-29 (Build 46)
@~history_1108_li
#Unnamed private in-memory database (jdbc:h2:mem:) were not 'private' as documented. Fixed.
@~history_1109_h3
#Version 1.0 / 2007-04-29 (Build 46)
@~history_1109_li
#Unnamed private in-memory database (jdbc:h2:mem:) were not 'private' as documented. Fixed.
@~history_1110_li
#Unnamed private in-memory database (jdbc:h2:mem:) were not 'private' as documented. Fixed.
@~history_1135_h3
#Version 1.0 / 2007-03-04 (Build 44)
@~history_1141_h3
#Version 1.0 / 2007-03-04 (Build 44)
@~history_1141_li
#After renaming a user the password becomes invalid. This is now documented.
@~history_1142_h3
#Version 1.0 / 2007-03-04 (Build 44)
@~history_1142_li
#System sequences (automatically created sequences for IDENTITY or AUTO_INCREMENT columns) are now random (UUIDs) to avoid clashes when merging databases using RUNSCRIPT.
@~history_1143_h3
#Version 1.0 / 2007-03-04 (Build 44)
@~history_1143_li
#System sequences (automatically created sequences for IDENTITY or AUTO_INCREMENT columns) are now random (UUIDs) to avoid clashes when merging databases using RUNSCRIPT.
@~history_1144_li
#System sequences (automatically created sequences for IDENTITY or AUTO_INCREMENT columns) are now random (UUIDs) to avoid clashes when merging databases using RUNSCRIPT.
@~history_1152_h3
#Version 1.0 / 2007-01-30 (Build 41)
@~history_1158_h3
#Version 1.0 / 2007-01-30 (Build 41)
@~history_1158_li
#The Console is now translated to Hungarian thanks to Andras Hideg, and to Indonesian thanks to Joko Yuliantoro
@~history_1159_h3
#Version 1.0 / 2007-01-30 (Build 41)
@~history_1159_li
#Experimental online backup feature using the SQL statement BACKUP TO 'fileName'. This creates a backup in the form of a zip file. Unlike the SCRIPT TO command, the data tables are not locked.
@~history_1160_h3
#Version 1.0 / 2007-01-30 (Build 41)
@~history_1160_li
#Experimental online backup feature using the SQL statement BACKUP TO 'fileName'. This creates a backup in the form of a zip file. Unlike the SCRIPT TO command, the data tables are not locked.
@~history_1161_li
#Experimental online backup feature using the SQL statement BACKUP TO 'fileName'. This creates a backup in the form of a zip file. Unlike the SCRIPT TO command, the data tables are not locked.
@~history_1167_h3
#Version 1.0 / 2007-01-17 (Build 40)
@~history_1173_h3
#Version 1.0 / 2007-01-17 (Build 40)
@~history_1173_li
#Selecting a column using the syntax schemaName.tableName.columnName did not work in all cases.
@~history_1174_h3
#Version 1.0 / 2007-01-17 (Build 40)
@~history_1174_li
#Setting the collation (SET COLLATOR) was very slow on some systems (up to 24 seconds). Thanks a lot to Martina Nissler for finding this problem!
@~history_1175_h3
#Version 1.0 / 2007-01-17 (Build 40)
@~history_1175_li
#Setting the collation (SET COLLATOR) was very slow on some systems (up to 24 seconds). Thanks a lot to Martina Nissler for finding this problem!
@~history_1176_li
#Setting the collation (SET COLLATOR) was very slow on some systems (up to 24 seconds). Thanks a lot to Martina Nissler for finding this problem!
@~history_1179_h3
#Version 1.0 / 2007-01-02 (Build 36)
@~history_1185_h3
#Version 1.0 / 2007-01-02 (Build 36)
@~history_1185_li
#Using ;RECOVER=1 in the database URL threw a syntax exception. Fixed.
@~history_1186_h3
#Version 1.0 / 2007-01-02 (Build 36)
@~history_1186_li
#It was possible to drop the sequence of a temporary tables with DROP ALL OBJECTS, resulting in a null pointer exception afterwards.
@~history_1187_h3
#Version 1.0 / 2007-01-02 (Build 36)
@~history_1187_li
#It was possible to drop the sequence of a temporary tables with DROP ALL OBJECTS, resulting in a null pointer exception afterwards.
@~history_1188_li
#It was possible to drop the sequence of a temporary tables with DROP ALL OBJECTS, resulting in a null pointer exception afterwards.
@~history_1191_h3
#Version 1.0 / 2006-12-17 (Build 34)
@~history_1197_h3
#Version 1.0 / 2006-12-17 (Build 34)
@~history_1197_li
#The RunScript tool can now include other files using a new syntax: @INCLUDE fileName. It was already possible to do that using embedded RUNSCRIPT statements, but not remotely.
@~history_1198_h3
#Version 1.0 / 2006-12-17 (Build 34)
@~history_1198_li
#Can be compiled with JDK 1.6. However, only very few of the JDBC 4.0 features are implemented so far.
@~history_1199_h3
#Version 1.0 / 2006-12-17 (Build 34)
@~history_1199_li
#Can be compiled with JDK 1.6. However, only very few of the JDBC 4.0 features are implemented so far.
@~history_1200_li
#Can be compiled with JDK 1.6. However, only very few of the JDBC 4.0 features are implemented so far.
@~history_1206_h3
#Version 1.0 / 2006-12-03 (Build 32)
@~history_1212_h3
#Version 1.0 / 2006-12-03 (Build 32)
@~history_1212_li
#There was a bug in the database encryption algorithm. The initialization vector was not correctly calculated, and pattern of repeated encrypted bytes where generated for empty blocks in the file. This has been is fixed. The security of the data itself was not compromised, but this was not the intended behavior. If you have an encrypted database, you will need to decrypt the database using the org.h2.tools.ChangePassword (using the old database engine), and encrypt the database using the new engine. Alternatively, you can use the Backup and RunScript tools or the SQL commands SCRIPT and RUNSCRIPT.
@~history_1213_h3
#Version 1.0 / 2006-12-03 (Build 32)
@~history_1213_li
#The SQL statement COMMENT did not work as expected. Many bugs have been fixed in this area. If you already have comments in the database, it is recommended to backup and restore the database, using the Backup and RunScript tools or the SQL commands SCRIPT and RUNSCRIPT.
@~history_1214_h3
#Version 1.0 / 2006-12-03 (Build 32)
@~history_1214_li
#The SQL statement COMMENT did not work as expected. Many bugs have been fixed in this area. If you already have comments in the database, it is recommended to backup and restore the database, using the Backup and RunScript tools or the SQL commands SCRIPT and RUNSCRIPT.
@~history_1215_li
#The SQL statement COMMENT did not work as expected. Many bugs have been fixed in this area. If you already have comments in the database, it is recommended to backup and restore the database, using the Backup and RunScript tools or the SQL commands SCRIPT and RUNSCRIPT.
@~history_1219_h3
#Version 1.0 / 2006-11-20 (Build 31)
@~history_1225_h3
#Version 1.0 / 2006-11-20 (Build 31)
@~history_1225_li
#Direct links to the Javadoc were not working.
@~history_1226_h3
#Version 1.0 / 2006-11-20 (Build 31)
@~history_1226_li
#SCRIPT: New option BLOCKSIZE to split BLOB and CLOB data into separate blocks, to avoid OutOfMemory problems.
@~history_1227_h3
#Version 1.0 / 2006-11-20 (Build 31)
@~history_1227_li
#SCRIPT: New option BLOCKSIZE to split BLOB and CLOB data into separate blocks, to avoid OutOfMemory problems.
@~history_1228_li
#SCRIPT: New option BLOCKSIZE to split BLOB and CLOB data into separate blocks, to avoid OutOfMemory problems.
@~history_1243_h3
#Version 1.0 / 2006-11-03 (Build 30)
@~history_1249_h3
#Version 1.0 / 2006-11-03 (Build 30)
@~history_1249_li
#Linked Tables: Only the first column was linked when linking to PostgreSQL, or a subquery. Fixed.
@~history_1250_h3
#Version 1.0 / 2006-11-03 (Build 30)
@~history_1250_li
#Two simple full text search implementations (Lucene and native) are now included. This is work in progress, and currently undocumented. See test/org/h2/samples/fullTextSearch.sql. To enable the Lucene implementation, you first need to install Lucene, rename FullTextLucene.java.txt to *.java and call 'ant compile'.
@~history_1251_h3
#Version 1.0 / 2006-11-03 (Build 30)
@~history_1251_li
#Two simple full text search implementations (Lucene and native) are now included. This is work in progress, and currently undocumented. See test/org/h2/samples/fullTextSearch.sql. To enable the Lucene implementation, you first need to install Lucene, rename FullTextLucene.java.txt to *.java and call 'ant compile'.
@~history_1252_li
#Two simple full text search implementations (Lucene and native) are now included. This is work in progress, and currently undocumented. See test/org/h2/samples/fullTextSearch.sql. To enable the Lucene implementation, you first need to install Lucene, rename FullTextLucene.java.txt to *.java and call 'ant compile'.
@~history_1266_h3
#Version 1.0 / 2006-10-10 (Build 28)
@~history_1272_h3
#Version 1.0 / 2006-10-10 (Build 28)
@~history_1272_li
#Reconnect didn't work after renaming a user if rights were granted for this user. Fixed.
@~history_1273_h3
#Version 1.0 / 2006-10-10 (Build 28)
@~history_1273_li
#Redundant () in a IN subquery is now supported: where id in ((select id from test))
@~history_1274_h3
#Version 1.0 / 2006-10-10 (Build 28)
@~history_1274_li
#Redundant () in a IN subquery is now supported: where id in ((select id from test))
@~history_1275_li
#Redundant () in a IN subquery is now supported: where id in ((select id from test))
@~history_1278_h3
#Version 1.0 / 2006-09-24 (Build 27)
@~history_1284_h3
#Version 1.0 / 2006-09-24 (Build 27)
@~history_1284_li
#Reading from compressed LOBs didn't work in some cases. Fixed.
@~history_1285_h3
#Version 1.0 / 2006-09-24 (Build 27)
@~history_1285_li
#New LOCK_MODE 3 (READ_COMMITTED). Table level locking, but only when writing (no read locks).
@~history_1286_h3
#Version 1.0 / 2006-09-24 (Build 27)
@~history_1286_li
#New LOCK_MODE 3 (READ_COMMITTED). Table level locking, but only when writing (no read locks).
@~history_1287_li
#New LOCK_MODE 3 (READ_COMMITTED). Table level locking, but only when writing (no read locks).
@~history_1303_h3
#Version 1.0 / 2006-09-10 (Build 26)
@~history_1309_h3
#Version 1.0 / 2006-09-10 (Build 26)
@~history_1309_li
#ROWNUM didn't always work as expected when using subqueries. This is fixed now. However, there is no standard definition for ROWNUM, for situations where you want to limit the number of rows (specially for offset), the standardized LIMIT [OFFSET] should be used
@~history_1310_h3
#Version 1.0 / 2006-09-10 (Build 26)
@~history_1310_li
#Updated the performance test so that Firebird can be tested as well.
@~history_1311_h3
#Version 1.0 / 2006-09-10 (Build 26)
@~history_1311_li
#Updated the performance test so that Firebird can be tested as well.
@~history_1312_li
#Updated the performance test so that Firebird can be tested as well.
@~history_1320_h3
#Version 1.0 / 2006-08-31 (Build 25)
@~history_1323_h3
#Version 0.9 / 2006-08-28
@~history_1326_h3
#Version 1.0 / 2006-08-31 (Build 25)
@~history_1326_li
#When large strings or byte arrays where inserted into a LOB (CLOB or BLOB), or if the data was stored using PreparedStatement.setBytes or setString, the data was stored in-place (no separate files where created). This is now implemented (that means distinct files are created in every case), however disabled by default. It is possible to enable this option with Constants.AUTO_CONVERT_LOB_TO_FILES = true
@~history_1327_h3
#Version 1.0 / 2006-08-31 (Build 25)
@~history_1327_li
#In some situations, wide b-tree indexes (with large VARCHAR columns for example) could get corrupted. Fixed.
@~history_1328_h3
#Version 1.0 / 2006-08-31 (Build 25)
@~history_1328_li
#In some situations, wide b-tree indexes (with large VARCHAR columns for example) could get corrupted. Fixed.
@~history_1329_h3
#Version 0.9 / 2006-08-28
@~history_1329_li
#Optimization for MIN and MAX (but currently disabled by default until after release 1.0): Queries such as SELECT MIN(ID), MAX(ID)+1, COUNT(*) FROM TEST now use an index if one is available. To enable manually, set Constants.OPTIMIZE_MIN_MAX = true in your application.
@~history_1330_h3
#Version 0.9 / 2006-08-28
@~history_1330_li
#DATEDIFF on seconds, minutes, hours did return different results in certain timezones (half-hour timezones) in certain situations. Fixed.
@~history_1331_h3
#Version 0.9 / 2006-08-28
@~history_1331_li
#DATEDIFF on seconds, minutes, hours did return different results in certain timezones (half-hour timezones) in certain situations. Fixed.
@~history_1332_li
#DATEDIFF on seconds, minutes, hours did return different results in certain timezones (half-hour timezones) in certain situations. Fixed.
@~history_1334_h3
#Version 0.9 / 2006-08-23 (Build 23)
@~history_1340_h3
#Version 0.9 / 2006-08-23 (Build 23)
@~history_1340_li
#Local temporary tables where not included in the meta data. Fixed.
@~history_1341_h3
#Version 0.9 / 2006-08-23 (Build 23)
@~history_1341_li
#Bugfix for LIKE: If collation was set (SET COLLATION ...), it was ignored when using LIKE. Fixed.
@~history_1342_h3
#Version 0.9 / 2006-08-23 (Build 23)
@~history_1342_li
#Bugfix for LIKE: If collation was set (SET COLLATION ...), it was ignored when using LIKE. Fixed.
@~history_1343_li
#Bugfix for LIKE: If collation was set (SET COLLATION ...), it was ignored when using LIKE. Fixed.
@~history_1345_h3
#Version 0.9 / 2006-08-14 (Build 21)
@~history_1351_h3
#Version 0.9 / 2006-08-14 (Build 21)
@~history_1351_li
#Umlauts and Chinese characters are now supported in identifier names (table name, column names and so on).
@~history_1352_h3
#Version 0.9 / 2006-08-14 (Build 21)
@~history_1352_li
#SET LOG 0 didn't work (except if the log level was set to some other value before). Fixed.
@~history_1353_h3
#Version 0.9 / 2006-08-14 (Build 21)
@~history_1353_li
#SET LOG 0 didn't work (except if the log level was set to some other value before). Fixed.
@~history_1354_li
#SET LOG 0 didn't work (except if the log level was set to some other value before). Fixed.
@~history_1355_h3
#Version 0.9 / 2006-07-29 (Build 18)
@~history_1361_h3
#Version 0.9 / 2006-07-29 (Build 18)
@~history_1361_li
#Shutdown TCP Server: The Server tool didn't throw / print a meaningful exception if the server was not running or if the password was wrong. Fixed.
@~history_1362_h3
#Version 0.9 / 2006-07-29 (Build 18)
@~history_1362_li
#ParameterMetaData is now implemented (mainly to support getParameterCount).
@~history_1363_h3
#Version 0.9 / 2006-07-29 (Build 18)
@~history_1363_li
#ParameterMetaData is now implemented (mainly to support getParameterCount).
@~history_1364_li
#ParameterMetaData is now implemented (mainly to support getParameterCount).
@~history_1374_h3
#Version 0.9 / 2005-12-13
@~history_1376_h2
#Roadmap
@~history_1377_h3
#Highest Priority
@~history_1380_h3
#Version 0.9 / 2005-12-13
@~history_1380_li
#Test very large databases and LOBs (up to 256 GB)
@~history_1381_h3
#Version 0.9 / 2005-12-13
@~history_1381_li
#First public release.
@~history_1382_h2
#Roadmap
@~history_1382_h3
#In Version 1.1
@~history_1382_li
#First public release.
@~history_1383_h2
#Roadmap
@~history_1383_h3
#Highest Priority
@~history_1383_li
#Add version number. Install directory: h2-1.0, jar file: h2-1.0.jar. Micro version: use build number, staring with 1.1.100
@~history_1384_h2
#Roadmap
@~history_1384_h3
#Highest Priority
@~history_1384_li
#Improve test code coverage
@~history_1385_h3
#Highest Priority
@~history_1385_li
#Improve test code coverage
@~history_1386_li
#Improve test code coverage
@~history_1388_h3
#In Version 1.1
@~history_1388_li
#Index organized tables CREATE TABLE...(...) ORGANIZATION INDEX (store in data file) (probably file format changes are required for rowId)
@~history_1389_h3
#In Version 1.1
@~history_1389_li
#Add version number. Install directory: h2-1.0, jar file: h2-1.0.jar. Micro version: use build number, staring with 1.1.100
@~history_1390_h3
#In Version 1.1
@~history_1390_li
#Add version number. Install directory: h2-1.0, jar file: h2-1.0.jar. Micro version: use build number, staring with 1.1.100
@~history_1391_h3
#Priority 1
@~history_1391_li
#Add version number. Install directory: h2-1.0, jar file: h2-1.0.jar. Micro version: use build number, staring with 1.1.100
@~history_1397_h3
#Priority 1
@~history_1397_li
#Document how to use H2 with PHP (generic database API)
@~history_1398_h3
#Priority 1
@~history_1398_li
#MVCC (Multi Version Concurrency Control)
@~history_1399_h3
#Priority 1
@~history_1399_li
#MVCC (Multi Version Concurrency Control)
@~history_1400_li
#MVCC (Multi Version Concurrency Control)
@~history_1422_h3
#Priority 2
@~history_1425_h3
#Priority 2
@~history_1425_li
#Change LOB mechanism (less files, keep index of lob files, point to files and row, delete unused files earlier, maybe bundle files into a tar file)
@~history_1426_h3
#Priority 2
@~history_1426_li
#Support OSGi: http://oscar-osgi.sourceforge.net, http://incubator.apache.org/felix/index.html
@~history_1427_h3
#Priority 2
@~history_1427_li
#Support OSGi: http://oscar-osgi.sourceforge.net, http://incubator.apache.org/felix/index.html
@~history_1428_li
#Support OSGi: http://oscar-osgi.sourceforge.net, http://incubator.apache.org/felix/index.html
@~history_1678_h3
#Not Planned
@~history_1681_h2
#Supporters
@~history_1682_p
#Many thanks for those who helped by finding and reporting bugs, gave valuable feedback, spread the word and have translated this project. Also many thanks to the donors who contributed via PayPal:
@~history_1687_h3
#Not Planned
@~history_1689_h3
#Not Planned
@~history_1689_li
#String.intern (so that Strings can be compared with ==) will not be used because some VMs have problems when used extensively
@~history_1690_h2
#Supporters
@~history_1691_p
#Many thanks for those who helped by finding and reporting bugs, gave valuable feedback, spread the word and have translated this project. Also many thanks to the donors who contributed via PayPal:
@~history_1692_h2
#Supporters
@~history_1692_li
#Florent Ramiere, France
@~history_1693_h3
#Not Planned
@~history_1693_li
#Pete Haidinyak, USA
@~history_1693_p
#Many thanks for those who helped by finding and reporting bugs, gave valuable feedback, spread the word and have translated this project. Also many thanks to the donors who contributed via PayPal:
@~history_1694_h3
#Not Planned
@~history_1694_li
#HSQLDB (did) support this: select id i from test where i>0 (other databases don't)
@~history_1695_li
#HSQLDB (did) support this: select id i from test where i>0 (other databases don't)
@~history_1696_h2
#Supporters
@~history_1696_li
#Jun Iyama, Japan
@~history_1697_h2
#Supporters
@~history_1697_li
#Antonio Casqueiro, Portugal
@~history_1697_p
#Many thanks for those who helped by finding and reporting bugs, gave valuable feedback, spread the word and have translated this project. Also many thanks to the donors who contributed via PayPal:
@~history_1698_li
#Florent Ramiere, France
@~history_1698_p
#Many thanks for those who helped by finding and reporting bugs, gave valuable feedback, spread the word and have translated this project. Also many thanks to the donors who contributed via PayPal:
@~history_1699_li
#Florent Ramiere, France
@~mainWeb_1014_p
#Or send an e-mail to:
@~mainWeb_1015_td
#&nbsp;
@~mainWeb_1016_h3
#Performance
@~mainWeb_1017_td
#Operations/second (higher is better) - <a href="performance.html">More information about this test</a>
@~mainWeb_1019_h3
#News
@~mainWeb_1020_b
#Newsfeeds:
@~mainWeb_1021_p
#Two are available: <a href="http://www.h2database.com/html/newsfeed-atom.xml" target="_blank">Full text (Atom)</a> and <a href="http://www.h2database.com/html/newsfeed-rss.xml" target="_blank">Header only (RSS)</a> .
@~mainWeb_1022_b
#Email Newsletter:
@~mainWeb_1023_form
#Subscribe to <a href="http://groups.google.com/group/h2database-news/subscribe">H2 Database News (Google account required)</a> to get informed about new releases. Your email address is only used in this context. If you don't want a Google account, there is a manually maintained list as well:
@~mainWeb_1025_td
#&nbsp;
@~mainWeb_1026_h3
#Contribute
@~mainWeb_1027_p
#You can contribute to the development of H2 by sending feedback and bug reports, or translate the H2 Console application (files h2/src/main/org/h2/server/web/res/_text_*.properties). Or click on the PayPal button below to donate money. You will be listed as a supporter:
@~mainWeb_1028_td
#&nbsp;
@~mainWeb_1029_h3
#Feedback
@~mainWeb_1030_td
#You may also send questions, feature requests, or feedback of any kind here:
@~mainWeb_1031_p
#Email (optional):
@~mainWeb_1032_form
#Message:
@~~history_1329_li
#In some situations, wide b-tree indexes (with large VARCHAR columns for example) could get corrupted. Fixed.
@~~history_1382_h3
#Version 0.9 / 2005-12-13
@~~history_1383_li
#First public release.
......@@ -7176,1086 +7176,3 @@ Java Web Start / JNLP
@tutorial_1131_p
#When using Java Web Start / JNLP (Java Network Launch Protocol), permissions tags must be set in the .jnlp file, and the application .jar file must be signed. Otherwise, when trying to write to the file system, the following exception will occur: java.security.AccessControlException: access denied (java.io.FilePermission ... read). Example permission tags:
@~faq_1010_h3
#Are there any known bugs? When is the next release?
@~faq_1011_p
#Usually, bugs get fixes as they are found. There is a release every few weeks. Here is the list of known and confirmed issues as of 2007-08-02:
@~faq_1012_li
#Some problems have been found with right outer join. Internally, it is converted to left outer join, which does not always produce the same results as other databases when used in combination with other joins.
@~faq_1013_h3
#Is this Database Engine Open Source?
@~faq_1014_p
#Yes. It is free to use and distribute, and the source code is included. See also under license.
@~faq_1015_h3
#My query is slow
@~faq_1016_p
#Slow SELECT (or DELETE, UPDATE, MERGE) statement can have multiple reasons. Follow this checklist:
@~faq_1017_li
#Run ANALYSE (see documentation for details).
@~faq_1021_h3
#How to Create a New Database?
@~faq_1022_p
#By default, a new database is automatically created if it does not yet exist.
@~faq_1023_h3
#How to Connect to a Database?
@~faq_1024_p
#The database driver is <code>org.h2.Driver</code> , and the database URL starts with <code>jdbc:h2:</code> . To connect to a database using JDBC, use the following code:
@~faq_1025_h3
#Where are the Database Files Stored?
@~faq_1026_p
#When using database URLs like jdbc:h2:~/test, the database is stored in the user directory. For Windows, this is usually C:\Documents and Settings\&lt;userName&gt;. If the base directory is not set (as in jdbc:h2:test), the database files are stored in the directory where the application is started (the current working directory). When using the H2 Console application from the start menu, this is [Installation Directory]/bin. The base directory can be set in the database URL. A fixed or relative path can be used. When using the URL jdbc:h2:file:data/sample, the database is stored in the directory data (relative to the current working directory). The directory must exist. It is also possible to use the fully qualified directory (and for Windows, drive) name. Example: jdbc:h2:file:C:/data/test
@~faq_1027_h3
#What is the Size Limit (maximum size) of a Database?
@~faq_1028_p
#The theoretical limit is currently 256 GB for the data. This number is excluding BLOB and CLOB data: Every CLOB or BLOB can be up to 256 GB as well. The size limit of the index data is 256 GB as well.
@~faq_1030_h3
#Is it Reliable?
@~faq_1031_p
#That is not easy to say. It is still a quite new product. A lot of tests have been written, and the code coverage of these tests is very high. Randomized stress tests are run regularly. But as this is a relatively new product, there are probably some problems that have not yet been found. Areas that are not 100% tested:
@~faq_1032_li
#Platforms other than Windows XP and the Sun JVM 1.4 and 1.5
@~faq_1044_p
#Areas considered Experimental:
@~faq_1045_li
#ODBC driver and the GCJ native version on Windows
@~faq_1049_h3
#Is the GCJ version stable? Faster?
@~faq_1050_p
#The GCJ version is not as stable as the Java version. When running the regression test with the GCJ version, sometimes the application just stops at what seems to be a random point without error message. Currently, the GCJ version is also slower than when using the Sun VM. However, the startup of the GCJ version is faster than when using a VM.
@~features_1202_h2
#Connection Modes
@~features_1203_p
#The following connection modes are supported:
@~features_1204_li
#Local connections using JDBC (embedded)
@~features_1205_li
#Remote connections using JDBC over TCP/IP (client/server)
@~features_1208_h2
#Database URL Overview
@~features_1209_p
#This database does support multiple connection modes and features when connecting to a database. This is achieved using different database URLs. The settings in the URLs are not case sensitive.
@~features_1210_th
#Topic
@~features_1211_th
#URL Format and Examples
@~features_1212_td
#Embedded (local) connection
@~features_1213_td
#jdbc:h2:[file:][&lt;path&gt;]&lt;databaseName&gt;
@~features_1258_h3
#Connecting to an Embedded (Local) Database
@~features_1259_p
#The database URL for connecting to a local database is <code>jdbc:h2:[file:][&lt;path&gt;]&lt;databaseName&gt;</code> . The prefix <code>file:</code> is optional. If no or only a relative path is used, then the current working directory is used as a starting point. The case sensitivity of the path and database name depend on the operating system, however it is suggested to use lowercase letters only. The database name must be at least three characters long (a limitation of File.createTempFile). To point to the user home directory, use ~/, as in: jdbc:h2:~/test.
@~features_1262_p
#In some cases, only one connection to a memory-only database is required. This means the database to be opened is private. In this case, the database URL is <code>jdbc:h2:mem:</code> Opening two connections within the same virtual machine means opening two different (private) databases.
@~features_1265_h2
#Connecting to a Database with File Encryption
@~features_1269_p
#The following file locking methods are implemented:
@~features_1270_li
#The default method is 'file' and uses a watchdog thread to protect the database file. The watchdog reads the lock file each second.
@~features_1271_li
#The second method is 'socket' and opens a server socket. The socket method does not require reading the lock file every second. The socket method should only be used if the database files are only accessed by the one (and always the same) computer.
@~features_1273_p
#To open the database with a different file locking method, use the parameter 'FILE_LOCK'. The following code opens the database with the 'socket' locking method:
@~features_1274_p
#The following code forces the database to not create a lock file at all. Please note that this is unsafe as another process is able to open the same database, possibly leading to data corruption:
@~features_1276_h2
#Opening a Database Only if it Already Exists
@~features_1279_h3
#Delayed Database Closing
@~features_1280_p
#Usually, the database is closed when the last connection to it is closed. In some situations this slows down the application, for example when it is not possible leave the connection open. The automatic closing of the database can be delayed or disabled with the SQL statement SET DB_CLOSE_DELAY &lt;seconds&gt;. The seconds specifies the number of seconds to keep a database open after the last connection to it was closed. For example the following statement will keep the database open for 10 seconds:
@~features_1281_p
#The value -1 means the database is never closed automatically. The value 0 is the default and means the database is closed when the last connection is closed. This setting is persistent and can be set by an administrator only. It is possible to set the value in the database URL: <code>jdbc:h2:~/test;DB_CLOSE_DELAY=10</code> .
@~features_1282_h3
#Don't Close the Database when the VM Exits
@~features_1284_h2
#Log Index Changes
@~features_1286_h3
#Ignore Unknown Settings
@~features_1290_h2
#Custom File Access Mode
@~features_1292_p
#For more information see <a href="advanced.html#durability_problems">Durability Problems</a> . On many operating systems the access mode 'rws' does not guarantee that the data is written to the disk.
@~features_1293_h2
#Multiple Connections
@~features_1294_h3
#Opening Multiple Databases at the Same Time
@~features_1295_p
#An application can open multiple databases at the same time, including multiple connections to the same database. The number of open database is only limited by the memory available.
@~features_1302_p
#Usually, SELECT statement will generate read locks. This includes subqueries. Statements that modify data use write locks. It is also possible to lock a table exclusively without modifying data, using the statement SELECT ... FOR UPDATE. The statements COMMIT and ROLLBACK releases all open locks. The commands SAVEPOINT and ROLLBACK TO SAVEPOINT don't affect locks. The locks are also released when the autocommit mode changes, and for connections with autocommit set to true (this is the default), locks are released after each statement. Here is an overview on what statements generate what type of lock:
@~features_1303_th
#Type of Lock
@~features_1304_th
#SQL Statement
@~features_1305_td
#Read
@~features_1306_td
#SELECT * FROM TEST
@~features_1320_p
#The number of seconds until a lock timeout exception is thrown can be set separately for each connection using the SQL command SET LOCK_TIMEOUT &lt;milliseconds&gt;. The initial lock timeout (that is the timeout used for new connections) can be set using the SQL command SET DEFAULT_LOCK_TIMEOUT &lt;milliseconds&gt;. The default lock timeout is persistent.
@~features_1321_h2
#Database File Layout
@~features_1323_th
#File Name
@~features_1324_th
#Description
@~features_1326_td
#test.data.db
@~features_1327_td
#Data file
@~features_1367_h3
#Moving and Renaming Database Files
@~features_1368_p
#Database name and location are not stored inside the database names.
@~features_1369_p
#While a database is closed, the files can be moved to another directory, and they can be renamed as well (as long as all files start with the same name).
@~features_1371_h3
#Backup
@~features_1373_p
#To backup data while the database is running, the SQL command SCRIPT can be used.
@~features_1374_h2
#Logging and Recovery
@~features_1376_p
#Please note that index file updates are not logged by default. If the database is opened and recovery is required, the index file is rebuilt from scratch.
@~features_1379_h2
#Compatibility Modes
@~features_1381_th
#Mode
@~features_1382_th
#Differences
@~features_1383_td
#PostgreSQL
@~features_1384_td
#Concatenation of a NULL with another value results in NULL. Usually, the NULL is treated as an empty string if only one of the operators is NULL, and NULL is only returned if both values are NULL.
@~features_1389_h2
#Using the Trace Options
@~features_1390_p
#To find problems in an application, it is sometimes good to see what database operations where executed. This database offers the following trace features:
@~features_1391_li
#Trace to System.out and/or a file
@~features_1392_li
#Support for trace levels OFF, ERROR, INFO, and DEBUG
@~features_1396_h3
#Trace Options
@~features_1397_p
#The simplest way to enable the trace option is setting it in the database URL. There are two settings, one for System.out (TRACE_LEVEL_SYSTEM_OUT) tracing, and one for file tracing (TRACE_LEVEL_FILE). The trace levels are 0 for OFF, 1 for ERROR (the default), 2 for INFO and 3 for DEBUG. A database URL with both levels set to DEBUG is:
@~features_1398_p
#The trace level can be changed at runtime by executing the SQL command <code>SET TRACE_LEVEL_SYSTEM_OUT level</code> (for System.out tracing) or <code>SET TRACE_LEVEL_FILE level</code> (for file tracing). Example:
@~features_1399_h3
#Setting the Maximum Size of the Trace File
@~features_1403_p
#You need to filter out the lines without /**/ to get the Java source code. In Windows, a simple way to do that is:
@~features_1406_h3
#Enabling the Trace Option at Runtime by Manually Creating a File
@~features_1408_p
#Example: if a database is called 'test', then the file to start tracing is 'test.trace.db.start'. The database engine tries to delete this file when it detects it. If trace is enabled using the start file, the trace level is not persistent to the database, and trace is switched back to the level that was set before when connecting to the database. However, if the start file is read only, the database engine cannot delete the file and will always enable the trace mode when connecting.
@~features_1409_h2
#Read Only Databases
@~features_1415_p
#It is possible to install a database event listener to detect low disk space situations early on (when only 1 MB if space is available). To do this, use the SQL statement SET DATABASE_EVENT_LISTENER. The listener can also be set at connection time, using an URL of the form jdbc:h2:~/test;DATABASE_EVENT_LISTENER='com.acme.DbListener' (the quotes around the class name are required). See also the DatabaseEventListener API.
@~features_1416_h3
#Opening a Corrupted Database
@~features_1418_h2
#Computed Columns / Function Based Index
@~features_1420_p
#When inserting data, it is not required (better: not allowed) to specify a value for the upper-case version of the column, because the value is generated. But you can use the column when querying the table:
@~features_1421_h2
#Multi-Dimensional Indexes
@~features_1423_p
#Currently, Z-order (also called N-order or Morton-order) is used; Hilbert curve could also be used, but the implementation is more complex. The algorithm to convert the multi-dimensional value is called bit-interleaving. The scalar value is indexed using a B-Tree index (usually using a computed column).
@~features_1425_h2
#Using Passwords
@~features_1426_h3
#Using Secure Passwords
@~features_1427_p
#Remember that weak passwords can be broken no matter of the encryption and security protocol. Don't use passwords that can be found in a dictionary. Also appending numbers does not make them secure. A way to create good passwords that can be remembered is, take the first letters of a sentence, use upper and lower case characters, and creatively include special characters. Example:
@~features_1428_p
#i'sE2rtPiUKtT (it's easy to remember this password if you know the trick)
@~features_1429_h3
#Passwords: Using Char Arrays instead of Strings
@~features_1431_p
#An attacker might have access to the swap file of the operating system. It is therefore a good idea to use char arrays instead of Strings to store passwords. Char arrays can be cleared (filled with zeros) after use, and therefore the password will not be stored in the swap file.
@~features_1434_h3
#Passing the User Name and/or Password in the URL
@~features_1436_h2
#User Defined Functions and Stored Procedures
@~features_1438_p
#The Java function must be registered in the database by calling CREATE ALIAS:
@~features_1440_h3
#Function Data Type Mapping
@~features_1452_h2
#Triggers
@~features_1454_p
#The connection can be used to query or update data in other tables. The trigger then needs to be defined in the database:
@~features_1456_h2
#Compacting a Database
@~features_1458_p
#See also the sample application org.h2.samples.Compact. The commands SCRIPT / RUNSCRIPT can be used as well to create the a backup of a database and re-build the database from the script.
@~features_1459_h2
#Cache Settings
@~features_1461_p
#This database supports two cache page replacement algorithms: LRU (the default) and 2Q. For LRU, the pages that were least frequently used are removed from the cache if it becomes full. The 2Q algorithm is a bit more complicated, basically two queues are used. The 2Q algorithm is more resistant to table scans, however the overhead is a bit higher compared to the LRU. To use the cache algorithm 2Q, use a database URL of the form jdbc:h2:~/test;CACHE_TYPE=TQ. The cache algorithm can not be changed once the database is open.
@~features_1463_h2
#Why Java
@~features_1465_li
#Very simple to integrate in Java applications
@~features_1466_li
#Support for many different platforms
@~features_1470_p
#Some people think that Java is still too slow for low level operations, but this is not the case (not any more). In general, the code can be written a lot faster than using C or C++. Like that, it is possible to concentrate on improving the algorithms (that make the application faster) rather than porting the code and dealing with low level stuff (such as memory management or dealing with threads). Garbage collection is now probably faster than manual memory management.
@~features_1471_p
#A lot of features are already built in (for example Unicode, network libraries). It is very easy to write secure code because buffer overflows and such problems can be detected very easily. Some features such as the reflection mechanism can be used for randomized testing.
@~history_1023_h3
#Version 1.0 / 2007-08-02 (Build 56)
@~history_1029_h3
#Version 1.0 / 2007-08-02 (Build 56)
@~history_1029_li
#A server that implements the PostgreSQL protocol is now included and documented. That means, the PostgreSQL ODBC driver can be used to access a H2 database. See in the documentation for details.
@~history_1030_h3
#Version 1.0 / 2007-08-02 (Build 56)
@~history_1030_li
#A new tool to help translation has been implemented: src/tools/org/h2/tools/i18n/PrepareTranslation. This tool can detect delta changes in the original (English) and prepends '#' in translation if the original text was changed. It can also extract text from the user documentation (however, it is incomplete).
@~history_1031_h3
#Version 1.0 / 2007-08-02 (Build 56)
@~history_1031_li
#A new tool to help translation has been implemented: src/tools/org/h2/tools/i18n/PrepareTranslation. This tool can detect delta changes in the original (English) and prepends '#' in translation if the original text was changed. It can also extract text from the user documentation (however, it is incomplete).
@~history_1032_li
#A new tool to help translation has been implemented: src/tools/org/h2/tools/i18n/PrepareTranslation. This tool can detect delta changes in the original (English) and prepends '#' in translation if the original text was changed. It can also extract text from the user documentation (however, it is incomplete).
@~history_1050_h3
#Version 1.0 / 2007-07-12 (Build 55)
@~history_1056_h3
#Version 1.0 / 2007-07-12 (Build 55)
@~history_1056_li
#New column ID for INFORMATION_SCHEMA.INDEXES, SEQUENCES, USERS, ROLES, RIGHTS, FUNCTION_ALIASES, SCHEMATA, VIEWS, CONSTRAINTS, CONSTANTS, DOMAINS, TRIGGERS.
@~history_1057_h3
#Version 1.0 / 2007-07-12 (Build 55)
@~history_1057_li
#Support for the system property baseDir. This works for embedded databases as well. The setting is supported by the H2 Console using -Dh2.baseDir or -baseDir
@~history_1058_h3
#Version 1.0 / 2007-07-12 (Build 55)
@~history_1058_li
#Support for the system property baseDir. This works for embedded databases as well. The setting is supported by the H2 Console using -Dh2.baseDir or -baseDir
@~history_1059_li
#Support for the system property baseDir. This works for embedded databases as well. The setting is supported by the H2 Console using -Dh2.baseDir or -baseDir
@~history_1076_h3
#Version 1.0 / 2007-06-17 (Build 50)
@~history_1082_h3
#Version 1.0 / 2007-06-17 (Build 50)
@~history_1082_li
#Views support has been partially re-implemented. Views are up to 6 times faster. Compared to regular queries, only 20% overhead. Because this is a bigger change, it is not enabled by default. To enable it, set the system property 'h2.indexNew' to true (java -Dh2.indexNew=true ..., or in source code Constants.INDEX_NEW = true). If no problems are found, this will be enabled by default in the next release.
@~history_1083_h3
#Version 1.0 / 2007-06-17 (Build 50)
@~history_1083_li
#File names starting with ~ are now in the user directory (Java system property user.home)
@~history_1084_h3
#Version 1.0 / 2007-06-17 (Build 50)
@~history_1084_li
#File names starting with ~ are now in the user directory (Java system property user.home)
@~history_1085_li
#File names starting with ~ are now in the user directory (Java system property user.home)
@~history_1101_h3
#Version 1.0 / 2007-04-29 (Build 46)
@~history_1107_h3
#Version 1.0 / 2007-04-29 (Build 46)
@~history_1107_li
#SimpleResultSet now has some basic data type conversion features.
@~history_1108_h3
#Version 1.0 / 2007-04-29 (Build 46)
@~history_1108_li
#Unnamed private in-memory database (jdbc:h2:mem:) were not 'private' as documented. Fixed.
@~history_1109_h3
#Version 1.0 / 2007-04-29 (Build 46)
@~history_1109_li
#Unnamed private in-memory database (jdbc:h2:mem:) were not 'private' as documented. Fixed.
@~history_1110_li
#Unnamed private in-memory database (jdbc:h2:mem:) were not 'private' as documented. Fixed.
@~history_1135_h3
#Version 1.0 / 2007-03-04 (Build 44)
@~history_1141_h3
#Version 1.0 / 2007-03-04 (Build 44)
@~history_1141_li
#After renaming a user the password becomes invalid. This is now documented.
@~history_1142_h3
#Version 1.0 / 2007-03-04 (Build 44)
@~history_1142_li
#System sequences (automatically created sequences for IDENTITY or AUTO_INCREMENT columns) are now random (UUIDs) to avoid clashes when merging databases using RUNSCRIPT.
@~history_1143_h3
#Version 1.0 / 2007-03-04 (Build 44)
@~history_1143_li
#System sequences (automatically created sequences for IDENTITY or AUTO_INCREMENT columns) are now random (UUIDs) to avoid clashes when merging databases using RUNSCRIPT.
@~history_1144_li
#System sequences (automatically created sequences for IDENTITY or AUTO_INCREMENT columns) are now random (UUIDs) to avoid clashes when merging databases using RUNSCRIPT.
@~history_1152_h3
#Version 1.0 / 2007-01-30 (Build 41)
@~history_1158_h3
#Version 1.0 / 2007-01-30 (Build 41)
@~history_1158_li
#The Console is now translated to Hungarian thanks to Andras Hideg, and to Indonesian thanks to Joko Yuliantoro
@~history_1159_h3
#Version 1.0 / 2007-01-30 (Build 41)
@~history_1159_li
#Experimental online backup feature using the SQL statement BACKUP TO 'fileName'. This creates a backup in the form of a zip file. Unlike the SCRIPT TO command, the data tables are not locked.
@~history_1160_h3
#Version 1.0 / 2007-01-30 (Build 41)
@~history_1160_li
#Experimental online backup feature using the SQL statement BACKUP TO 'fileName'. This creates a backup in the form of a zip file. Unlike the SCRIPT TO command, the data tables are not locked.
@~history_1161_li
#Experimental online backup feature using the SQL statement BACKUP TO 'fileName'. This creates a backup in the form of a zip file. Unlike the SCRIPT TO command, the data tables are not locked.
@~history_1167_h3
#Version 1.0 / 2007-01-17 (Build 40)
@~history_1173_h3
#Version 1.0 / 2007-01-17 (Build 40)
@~history_1173_li
#Selecting a column using the syntax schemaName.tableName.columnName did not work in all cases.
@~history_1174_h3
#Version 1.0 / 2007-01-17 (Build 40)
@~history_1174_li
#Setting the collation (SET COLLATOR) was very slow on some systems (up to 24 seconds). Thanks a lot to Martina Nissler for finding this problem!
@~history_1175_h3
#Version 1.0 / 2007-01-17 (Build 40)
@~history_1175_li
#Setting the collation (SET COLLATOR) was very slow on some systems (up to 24 seconds). Thanks a lot to Martina Nissler for finding this problem!
@~history_1176_li
#Setting the collation (SET COLLATOR) was very slow on some systems (up to 24 seconds). Thanks a lot to Martina Nissler for finding this problem!
@~history_1179_h3
#Version 1.0 / 2007-01-02 (Build 36)
@~history_1185_h3
#Version 1.0 / 2007-01-02 (Build 36)
@~history_1185_li
#Using ;RECOVER=1 in the database URL threw a syntax exception. Fixed.
@~history_1186_h3
#Version 1.0 / 2007-01-02 (Build 36)
@~history_1186_li
#It was possible to drop the sequence of a temporary tables with DROP ALL OBJECTS, resulting in a null pointer exception afterwards.
@~history_1187_h3
#Version 1.0 / 2007-01-02 (Build 36)
@~history_1187_li
#It was possible to drop the sequence of a temporary tables with DROP ALL OBJECTS, resulting in a null pointer exception afterwards.
@~history_1188_li
#It was possible to drop the sequence of a temporary tables with DROP ALL OBJECTS, resulting in a null pointer exception afterwards.
@~history_1191_h3
#Version 1.0 / 2006-12-17 (Build 34)
@~history_1197_h3
#Version 1.0 / 2006-12-17 (Build 34)
@~history_1197_li
#The RunScript tool can now include other files using a new syntax: @INCLUDE fileName. It was already possible to do that using embedded RUNSCRIPT statements, but not remotely.
@~history_1198_h3
#Version 1.0 / 2006-12-17 (Build 34)
@~history_1198_li
#Can be compiled with JDK 1.6. However, only very few of the JDBC 4.0 features are implemented so far.
@~history_1199_h3
#Version 1.0 / 2006-12-17 (Build 34)
@~history_1199_li
#Can be compiled with JDK 1.6. However, only very few of the JDBC 4.0 features are implemented so far.
@~history_1200_li
#Can be compiled with JDK 1.6. However, only very few of the JDBC 4.0 features are implemented so far.
@~history_1206_h3
#Version 1.0 / 2006-12-03 (Build 32)
@~history_1212_h3
#Version 1.0 / 2006-12-03 (Build 32)
@~history_1212_li
#There was a bug in the database encryption algorithm. The initialization vector was not correctly calculated, and pattern of repeated encrypted bytes where generated for empty blocks in the file. This has been is fixed. The security of the data itself was not compromised, but this was not the intended behavior. If you have an encrypted database, you will need to decrypt the database using the org.h2.tools.ChangePassword (using the old database engine), and encrypt the database using the new engine. Alternatively, you can use the Backup and RunScript tools or the SQL commands SCRIPT and RUNSCRIPT.
@~history_1213_h3
#Version 1.0 / 2006-12-03 (Build 32)
@~history_1213_li
#The SQL statement COMMENT did not work as expected. Many bugs have been fixed in this area. If you already have comments in the database, it is recommended to backup and restore the database, using the Backup and RunScript tools or the SQL commands SCRIPT and RUNSCRIPT.
@~history_1214_h3
#Version 1.0 / 2006-12-03 (Build 32)
@~history_1214_li
#The SQL statement COMMENT did not work as expected. Many bugs have been fixed in this area. If you already have comments in the database, it is recommended to backup and restore the database, using the Backup and RunScript tools or the SQL commands SCRIPT and RUNSCRIPT.
@~history_1215_li
#The SQL statement COMMENT did not work as expected. Many bugs have been fixed in this area. If you already have comments in the database, it is recommended to backup and restore the database, using the Backup and RunScript tools or the SQL commands SCRIPT and RUNSCRIPT.
@~history_1219_h3
#Version 1.0 / 2006-11-20 (Build 31)
@~history_1225_h3
#Version 1.0 / 2006-11-20 (Build 31)
@~history_1225_li
#Direct links to the Javadoc were not working.
@~history_1226_h3
#Version 1.0 / 2006-11-20 (Build 31)
@~history_1226_li
#SCRIPT: New option BLOCKSIZE to split BLOB and CLOB data into separate blocks, to avoid OutOfMemory problems.
@~history_1227_h3
#Version 1.0 / 2006-11-20 (Build 31)
@~history_1227_li
#SCRIPT: New option BLOCKSIZE to split BLOB and CLOB data into separate blocks, to avoid OutOfMemory problems.
@~history_1228_li
#SCRIPT: New option BLOCKSIZE to split BLOB and CLOB data into separate blocks, to avoid OutOfMemory problems.
@~history_1243_h3
#Version 1.0 / 2006-11-03 (Build 30)
@~history_1249_h3
#Version 1.0 / 2006-11-03 (Build 30)
@~history_1249_li
#Linked Tables: Only the first column was linked when linking to PostgreSQL, or a subquery. Fixed.
@~history_1250_h3
#Version 1.0 / 2006-11-03 (Build 30)
@~history_1250_li
#Two simple full text search implementations (Lucene and native) are now included. This is work in progress, and currently undocumented. See test/org/h2/samples/fullTextSearch.sql. To enable the Lucene implementation, you first need to install Lucene, rename FullTextLucene.java.txt to *.java and call 'ant compile'.
@~history_1251_h3
#Version 1.0 / 2006-11-03 (Build 30)
@~history_1251_li
#Two simple full text search implementations (Lucene and native) are now included. This is work in progress, and currently undocumented. See test/org/h2/samples/fullTextSearch.sql. To enable the Lucene implementation, you first need to install Lucene, rename FullTextLucene.java.txt to *.java and call 'ant compile'.
@~history_1252_li
#Two simple full text search implementations (Lucene and native) are now included. This is work in progress, and currently undocumented. See test/org/h2/samples/fullTextSearch.sql. To enable the Lucene implementation, you first need to install Lucene, rename FullTextLucene.java.txt to *.java and call 'ant compile'.
@~history_1266_h3
#Version 1.0 / 2006-10-10 (Build 28)
@~history_1272_h3
#Version 1.0 / 2006-10-10 (Build 28)
@~history_1272_li
#Reconnect didn't work after renaming a user if rights were granted for this user. Fixed.
@~history_1273_h3
#Version 1.0 / 2006-10-10 (Build 28)
@~history_1273_li
#Redundant () in a IN subquery is now supported: where id in ((select id from test))
@~history_1274_h3
#Version 1.0 / 2006-10-10 (Build 28)
@~history_1274_li
#Redundant () in a IN subquery is now supported: where id in ((select id from test))
@~history_1275_li
#Redundant () in a IN subquery is now supported: where id in ((select id from test))
@~history_1278_h3
#Version 1.0 / 2006-09-24 (Build 27)
@~history_1284_h3
#Version 1.0 / 2006-09-24 (Build 27)
@~history_1284_li
#Reading from compressed LOBs didn't work in some cases. Fixed.
@~history_1285_h3
#Version 1.0 / 2006-09-24 (Build 27)
@~history_1285_li
#New LOCK_MODE 3 (READ_COMMITTED). Table level locking, but only when writing (no read locks).
@~history_1286_h3
#Version 1.0 / 2006-09-24 (Build 27)
@~history_1286_li
#New LOCK_MODE 3 (READ_COMMITTED). Table level locking, but only when writing (no read locks).
@~history_1287_li
#New LOCK_MODE 3 (READ_COMMITTED). Table level locking, but only when writing (no read locks).
@~history_1303_h3
#Version 1.0 / 2006-09-10 (Build 26)
@~history_1309_h3
#Version 1.0 / 2006-09-10 (Build 26)
@~history_1309_li
#ROWNUM didn't always work as expected when using subqueries. This is fixed now. However, there is no standard definition for ROWNUM, for situations where you want to limit the number of rows (specially for offset), the standardized LIMIT [OFFSET] should be used
@~history_1310_h3
#Version 1.0 / 2006-09-10 (Build 26)
@~history_1310_li
#Updated the performance test so that Firebird can be tested as well.
@~history_1311_h3
#Version 1.0 / 2006-09-10 (Build 26)
@~history_1311_li
#Updated the performance test so that Firebird can be tested as well.
@~history_1312_li
#Updated the performance test so that Firebird can be tested as well.
@~history_1320_h3
#Version 1.0 / 2006-08-31 (Build 25)
@~history_1323_h3
#Version 0.9 / 2006-08-28
@~history_1326_h3
#Version 1.0 / 2006-08-31 (Build 25)
@~history_1326_li
#When large strings or byte arrays where inserted into a LOB (CLOB or BLOB), or if the data was stored using PreparedStatement.setBytes or setString, the data was stored in-place (no separate files where created). This is now implemented (that means distinct files are created in every case), however disabled by default. It is possible to enable this option with Constants.AUTO_CONVERT_LOB_TO_FILES = true
@~history_1327_h3
#Version 1.0 / 2006-08-31 (Build 25)
@~history_1327_li
#In some situations, wide b-tree indexes (with large VARCHAR columns for example) could get corrupted. Fixed.
@~history_1328_h3
#Version 1.0 / 2006-08-31 (Build 25)
@~history_1328_li
#In some situations, wide b-tree indexes (with large VARCHAR columns for example) could get corrupted. Fixed.
@~history_1329_h3
#Version 0.9 / 2006-08-28
@~history_1329_li
#Optimization for MIN and MAX (but currently disabled by default until after release 1.0): Queries such as SELECT MIN(ID), MAX(ID)+1, COUNT(*) FROM TEST now use an index if one is available. To enable manually, set Constants.OPTIMIZE_MIN_MAX = true in your application.
@~history_1330_h3
#Version 0.9 / 2006-08-28
@~history_1330_li
#DATEDIFF on seconds, minutes, hours did return different results in certain timezones (half-hour timezones) in certain situations. Fixed.
@~history_1331_h3
#Version 0.9 / 2006-08-28
@~history_1331_li
#DATEDIFF on seconds, minutes, hours did return different results in certain timezones (half-hour timezones) in certain situations. Fixed.
@~history_1332_li
#DATEDIFF on seconds, minutes, hours did return different results in certain timezones (half-hour timezones) in certain situations. Fixed.
@~history_1334_h3
#Version 0.9 / 2006-08-23 (Build 23)
@~history_1340_h3
#Version 0.9 / 2006-08-23 (Build 23)
@~history_1340_li
#Local temporary tables where not included in the meta data. Fixed.
@~history_1341_h3
#Version 0.9 / 2006-08-23 (Build 23)
@~history_1341_li
#Bugfix for LIKE: If collation was set (SET COLLATION ...), it was ignored when using LIKE. Fixed.
@~history_1342_h3
#Version 0.9 / 2006-08-23 (Build 23)
@~history_1342_li
#Bugfix for LIKE: If collation was set (SET COLLATION ...), it was ignored when using LIKE. Fixed.
@~history_1343_li
#Bugfix for LIKE: If collation was set (SET COLLATION ...), it was ignored when using LIKE. Fixed.
@~history_1345_h3
#Version 0.9 / 2006-08-14 (Build 21)
@~history_1351_h3
#Version 0.9 / 2006-08-14 (Build 21)
@~history_1351_li
#Umlauts and Chinese characters are now supported in identifier names (table name, column names and so on).
@~history_1352_h3
#Version 0.9 / 2006-08-14 (Build 21)
@~history_1352_li
#SET LOG 0 didn't work (except if the log level was set to some other value before). Fixed.
@~history_1353_h3
#Version 0.9 / 2006-08-14 (Build 21)
@~history_1353_li
#SET LOG 0 didn't work (except if the log level was set to some other value before). Fixed.
@~history_1354_li
#SET LOG 0 didn't work (except if the log level was set to some other value before). Fixed.
@~history_1355_h3
#Version 0.9 / 2006-07-29 (Build 18)
@~history_1361_h3
#Version 0.9 / 2006-07-29 (Build 18)
@~history_1361_li
#Shutdown TCP Server: The Server tool didn't throw / print a meaningful exception if the server was not running or if the password was wrong. Fixed.
@~history_1362_h3
#Version 0.9 / 2006-07-29 (Build 18)
@~history_1362_li
#ParameterMetaData is now implemented (mainly to support getParameterCount).
@~history_1363_h3
#Version 0.9 / 2006-07-29 (Build 18)
@~history_1363_li
#ParameterMetaData is now implemented (mainly to support getParameterCount).
@~history_1364_li
#ParameterMetaData is now implemented (mainly to support getParameterCount).
@~history_1374_h3
#Version 0.9 / 2005-12-13
@~history_1376_h2
#Roadmap
@~history_1377_h3
#Highest Priority
@~history_1380_h3
#Version 0.9 / 2005-12-13
@~history_1380_li
#Test very large databases and LOBs (up to 256 GB)
@~history_1381_h3
#Version 0.9 / 2005-12-13
@~history_1381_li
#First public release.
@~history_1382_h2
#Roadmap
@~history_1382_h3
#In Version 1.1
@~history_1382_li
#First public release.
@~history_1383_h2
#Roadmap
@~history_1383_h3
#Highest Priority
@~history_1383_li
#Add version number. Install directory: h2-1.0, jar file: h2-1.0.jar. Micro version: use build number, staring with 1.1.100
@~history_1384_h2
#Roadmap
@~history_1384_h3
#Highest Priority
@~history_1384_li
#Improve test code coverage
@~history_1385_h3
#Highest Priority
@~history_1385_li
#Improve test code coverage
@~history_1386_li
#Improve test code coverage
@~history_1388_h3
#In Version 1.1
@~history_1388_li
#Index organized tables CREATE TABLE...(...) ORGANIZATION INDEX (store in data file) (probably file format changes are required for rowId)
@~history_1389_h3
#In Version 1.1
@~history_1389_li
#Add version number. Install directory: h2-1.0, jar file: h2-1.0.jar. Micro version: use build number, staring with 1.1.100
@~history_1390_h3
#In Version 1.1
@~history_1390_li
#Add version number. Install directory: h2-1.0, jar file: h2-1.0.jar. Micro version: use build number, staring with 1.1.100
@~history_1391_h3
#Priority 1
@~history_1391_li
#Add version number. Install directory: h2-1.0, jar file: h2-1.0.jar. Micro version: use build number, staring with 1.1.100
@~history_1397_h3
#Priority 1
@~history_1397_li
#Document how to use H2 with PHP (generic database API)
@~history_1398_h3
#Priority 1
@~history_1398_li
#MVCC (Multi Version Concurrency Control)
@~history_1399_h3
#Priority 1
@~history_1399_li
#MVCC (Multi Version Concurrency Control)
@~history_1400_li
#MVCC (Multi Version Concurrency Control)
@~history_1422_h3
#Priority 2
@~history_1425_h3
#Priority 2
@~history_1425_li
#Change LOB mechanism (less files, keep index of lob files, point to files and row, delete unused files earlier, maybe bundle files into a tar file)
@~history_1426_h3
#Priority 2
@~history_1426_li
#Support OSGi: http://oscar-osgi.sourceforge.net, http://incubator.apache.org/felix/index.html
@~history_1427_h3
#Priority 2
@~history_1427_li
#Support OSGi: http://oscar-osgi.sourceforge.net, http://incubator.apache.org/felix/index.html
@~history_1428_li
#Support OSGi: http://oscar-osgi.sourceforge.net, http://incubator.apache.org/felix/index.html
@~history_1678_h3
#Not Planned
@~history_1681_h2
#Supporters
@~history_1682_p
#Many thanks for those who helped by finding and reporting bugs, gave valuable feedback, spread the word and have translated this project. Also many thanks to the donors who contributed via PayPal:
@~history_1687_h3
#Not Planned
@~history_1689_h3
#Not Planned
@~history_1689_li
#String.intern (so that Strings can be compared with ==) will not be used because some VMs have problems when used extensively
@~history_1690_h2
#Supporters
@~history_1691_p
#Many thanks for those who helped by finding and reporting bugs, gave valuable feedback, spread the word and have translated this project. Also many thanks to the donors who contributed via PayPal:
@~history_1692_h2
#Supporters
@~history_1692_li
#Florent Ramiere, France
@~history_1693_h3
#Not Planned
@~history_1693_li
#Pete Haidinyak, USA
@~history_1693_p
#Many thanks for those who helped by finding and reporting bugs, gave valuable feedback, spread the word and have translated this project. Also many thanks to the donors who contributed via PayPal:
@~history_1694_h3
#Not Planned
@~history_1694_li
#HSQLDB (did) support this: select id i from test where i>0 (other databases don't)
@~history_1695_li
#HSQLDB (did) support this: select id i from test where i>0 (other databases don't)
@~history_1696_h2
#Supporters
@~history_1696_li
#Jun Iyama, Japan
@~history_1697_h2
#Supporters
@~history_1697_li
#Antonio Casqueiro, Portugal
@~history_1697_p
#Many thanks for those who helped by finding and reporting bugs, gave valuable feedback, spread the word and have translated this project. Also many thanks to the donors who contributed via PayPal:
@~history_1698_li
#Florent Ramiere, France
@~history_1698_p
#Many thanks for those who helped by finding and reporting bugs, gave valuable feedback, spread the word and have translated this project. Also many thanks to the donors who contributed via PayPal:
@~history_1699_li
#Florent Ramiere, France
@~mainWeb_1014_p
e-mail �?��?��?�ら�?�ら:
@~mainWeb_1015_td
&nbsp;
@~mainWeb_1016_h3
パフォーマンス
@~mainWeb_1017_td
�?作/秒 (高�?�方�?�より良�?�) -<a href="performance.html">�?��?�テスト�?��?��?��?��?�詳�?��?�情報</a>
@~mainWeb_1019_h3
ニュース
@~mainWeb_1020_b
ニュースフィード:
@~mainWeb_1021_p
二種類�?�ら�?��?��?��?�:<a href="http://www.h2database.com/html/newsfeed-atom.xml" target="_blank">フルテキスト (Atom)</a>�?��?��?�<a href="http://www.h2database.com/html/newsfeed-rss.xml" target="_blank">ヘッダー�?��?� (RSS)</a>.
@~mainWeb_1022_b
Email ニュースレター:
@~mainWeb_1023_form
H2 データベース ニュース (Googleアカウント�?�必�?�?��?�) �?�署�??�?��?ニューリリース�?��?��?��?��?�情報を入手�?��?�下�?��?�。 �?��?��?��?�emailアドレス�?��?��?�コンテンツ�?��?��?�使用�?�れ�?��?�。 も�?�Googleアカウントを入手�?��?��??�?��?��?��?��?�れ�?��? �?��?�ら�?�リスト�?�入力�?��?�下�?��?�:
@~mainWeb_1025_td
&nbsp;
@~mainWeb_1026_h3
寄稿�?�る
@~mainWeb_1027_p
H2�?�発展�?��?��?�?フィード�?ックや�?グ報告を�?�?��?�り�?H2コンソールアプリケーション (ファイル h2/src/main/org/h2/server/web/res/_text_*.properties)を訳�?��?��?��? 投稿�?�る�?��?��?��?��??�?��?�。�?��?��?下�?��?�る PayPal ボタンをクリック�?�る�?��?��?� 寄付�?�る�?��?�も�?��??�?��?�。 支�?�者�?��?��?��?�?��?��?��?��??�?�?�載り�?��?�:
@~mainWeb_1028_td
&nbsp;
@~mainWeb_1029_h3
フィード�?ック
@~mainWeb_1030_td
質�?や�?望�?�??�?�他�?�らゆるフィード�?ック�?��?��?�ら�?�ら�?信�?��?�下�?��?�:
@~mainWeb_1031_p
Email (任�?):
@~mainWeb_1032_form
メッセージ:
@~~history_1329_li
#In some situations, wide b-tree indexes (with large VARCHAR columns for example) could get corrupted. Fixed.
@~~history_1382_h3
#Version 0.9 / 2005-12-13
@~~history_1383_li
#First public release.
......@@ -122,11 +122,10 @@ public class ErrorCode {
* conn = null;
* The connection was not closed by the application and is garbage collected
* </pre>
*
* Correct:
*
* <pre>
* conn.close();
* </pre>
*
*/
public static final int TRACE_CONNECTION_NOT_CLOSED = 90018;
......
......@@ -30,7 +30,7 @@ import org.h2.constant.SysProperties;
* - Maybe increase TCP_DRIVER_VERSION
* - Check code coverage
* - No " Message.getInternalError" (must be "throw Message.getInternalError")
* - No TODO in the docs
* - No TODO in the docs, remove @~ in .utf8.txt files
* - Run regression test with JDK 1.4 and 1.5
* - Change version(s) in performance.html; use latest versions of other databases
* - Run 'ant benchmark' (with JDK 1.4 currently)
......@@ -66,8 +66,8 @@ import org.h2.constant.SysProperties;
*/
public class Constants {
public static final int BUILD_ID = 56;
private static final String BUILD = "2007-08-02";
public static final int BUILD_ID = 57;
private static final String BUILD = "2007-08-25";
public static final int VERSION_MAJOR = 1;
public static final int VERSION_MINOR = 0;
......
......@@ -9,57 +9,56 @@ import org.h2.table.Table;
import org.h2.util.ObjectArray;
public interface DbObject {
public static final int INDEX = 1;
public static final int SEQUENCE = 3;
public static final int TABLE_OR_VIEW = 0;
public static final int TRIGGER = 4;
public static final int USER = 2;
public static final int CONSTRAINT = 5;
public static final int FUNCTION_ALIAS = 9;
public static final int RIGHT = 8;
public static final int ROLE = 7;
public static final int SETTING = 6;
public static final int CONSTANT = 11;
public static final int SCHEMA = 10;
public static final int COMMENT = 13;
public static final int USER_DATATYPE = 12;
int INDEX = 1;
int SEQUENCE = 3;
int TABLE_OR_VIEW = 0;
int TRIGGER = 4;
int USER = 2;
int CONSTRAINT = 5;
int FUNCTION_ALIAS = 9;
int RIGHT = 8;
int ROLE = 7;
int SETTING = 6;
int CONSTANT = 11;
int SCHEMA = 10;
int COMMENT = 13;
int USER_DATATYPE = 12;
public abstract void setModified();
void setModified();
public abstract long getModificationId();
long getModificationId();
public abstract String getSQL();
String getSQL();
public abstract ObjectArray getChildren();
ObjectArray getChildren();
public abstract Database getDatabase();
Database getDatabase();
public abstract int getId();
int getId();
public abstract String getName();
String getName();
public abstract String getCreateSQLForCopy(Table table, String quotedName);
String getCreateSQLForCopy(Table table, String quotedName);
public abstract String getCreateSQL();
String getCreateSQL();
public abstract String getDropSQL();
String getDropSQL();
public abstract int getType();
int getType();
public abstract void removeChildrenAndResources(Session session)
throws SQLException;
void removeChildrenAndResources(Session session) throws SQLException;
public abstract void checkRename() throws SQLException;
void checkRename() throws SQLException;
public abstract void rename(String newName) throws SQLException;
void rename(String newName) throws SQLException;
public abstract boolean getTemporary();
boolean getTemporary();
public abstract void setTemporary(boolean temporary);
void setTemporary(boolean temporary);
public abstract void setComment(String comment);
void setComment(String comment);
public abstract String getComment();
String getComment();
public abstract int getHeadPos();
}
\ No newline at end of file
int getHeadPos();
}
......@@ -5,6 +5,7 @@
package org.h2.index;
import java.sql.SQLException;
import org.h2.engine.Session;
import org.h2.result.Row;
import org.h2.result.SearchRow;
......@@ -14,59 +15,54 @@ import org.h2.table.Table;
public interface Index extends SchemaObject {
public static final int EMPTY_HEAD = -1;
int EMPTY_HEAD = -1;
public abstract SQLException getDuplicateKeyException();
SQLException getDuplicateKeyException();
public abstract String getPlanSQL();
String getPlanSQL();
public abstract void close(Session session) throws SQLException;
void close(Session session) throws SQLException;
public abstract void add(Session session, Row row) throws SQLException;
void add(Session session, Row row) throws SQLException;
public abstract void remove(Session session, Row row) throws SQLException;
void remove(Session session, Row row) throws SQLException;
public abstract Cursor find(Session session, SearchRow first, SearchRow last)
throws SQLException;
Cursor find(Session session, SearchRow first, SearchRow last) throws SQLException;
public abstract double getCost(Session session, int[] masks)
throws SQLException;
double getCost(Session session, int[] masks) throws SQLException;
public abstract void remove(Session session) throws SQLException;
void remove(Session session) throws SQLException;
public abstract void truncate(Session session) throws SQLException;
void truncate(Session session) throws SQLException;
public abstract boolean canGetFirstOrLast(boolean first);
boolean canGetFirstOrLast(boolean first);
public abstract SearchRow findFirstOrLast(Session session, boolean first)
throws SQLException;
SearchRow findFirstOrLast(Session session, boolean first) throws SQLException;
public abstract boolean needRebuild();
boolean needRebuild();
public abstract long getRowCount(Session session);
long getRowCount(Session session);
public abstract int getLookupCost(long rowCount);
int getLookupCost(long rowCount);
public abstract long getCostRangeIndex(int[] masks, long rowCount)
throws SQLException;
long getCostRangeIndex(int[] masks, long rowCount) throws SQLException;
public abstract int compareRows(SearchRow rowData, SearchRow compare)
throws SQLException;
int compareRows(SearchRow rowData, SearchRow compare) throws SQLException;
public abstract boolean isNull(Row newRow);
boolean isNull(Row newRow);
public abstract int compareKeys(SearchRow rowData, SearchRow compare);
int compareKeys(SearchRow rowData, SearchRow compare);
public abstract int getColumnIndex(Column col);
int getColumnIndex(Column col);
public abstract String getColumnListSQL();
String getColumnListSQL();
public abstract Column[] getColumns();
Column[] getColumns();
public abstract IndexType getIndexType();
IndexType getIndexType();
public abstract Table getTable();
Table getTable();
public abstract void commit(int operation, Row row) throws SQLException;
void commit(int operation, Row row) throws SQLException;
}
\ No newline at end of file
}
......@@ -155,4 +155,4 @@
HY000=\u4e00\u822c\u30a8\u30e9\u30fc\: {0}
HY004=\u4e0d\u660e\u306a\u30c7\u30fc\u30bf\u578b\: {0}
HYC00=\u6a5f\u80fd\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093
HYT00=\u30c6\u30fc\u30d6\u30eb {0} \u306e\u30ed\u30c3\u30af\u8a66\u884c\u304c\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8\u3057\u307e\u3057\u305f
\ No newline at end of file
HYT00=\u30c6\u30fc\u30d6\u30eb {0} \u306e\u30ed\u30c3\u30af\u8a66\u884c\u304c\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8\u3057\u307e\u3057\u305f
......@@ -7,7 +7,7 @@ package org.h2.schema;
import org.h2.engine.DbObject;
public interface SchemaObject extends DbObject {
public abstract Schema getSchema();
Schema getSchema();
public abstract String getSQL();
}
\ No newline at end of file
String getSQL();
}
......@@ -451,7 +451,7 @@ public abstract class Table extends SchemaObjectBase {
public void setCheckForeignKeyConstraints(Session session, boolean enabled, boolean checkExisting) throws SQLException {
if(enabled && checkExisting) {
for(int i=0; i<constraints.size(); i++) {
for(int i=0; constraints != null && i<constraints.size(); i++) {
Constraint c = (Constraint) constraints.get(i);
c.checkExistingData(session);
}
......
......@@ -58,7 +58,7 @@ public abstract class CacheObject {
return false;
}
abstract public boolean canRemove();
public abstract boolean canRemove();
/*
* Get the estimated memory size.
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论