Fixed Javadoc

This commit is contained in:
Lukas Eder 2012-03-24 18:20:22 +00:00
parent bba467bcee
commit c3640ea846

View File

@ -55,16 +55,15 @@ import java.util.Collection;
* <li>Postgres has native support for <code>INSERT .. RETURNING</code> clauses</li>
* <li>HSQLDB, Oracle, and DB2 JDBC drivers allow for retrieving any table
* column as "generated key" in one statement</li>
* <li>Derby, H2, MySQL, SQL Server only allow for retrieving IDENTITY column
* values as "generated key". If other fields are requested, a second statement
* is issued. Client code must assure transactional integrity between the two
* statements.</li>
* <li>Derby, H2, Ingres, MySQL, SQL Server only allow for retrieving IDENTITY
* column values as "generated key". If other fields are requested, a second
* statement is issued. Client code must assure transactional integrity between
* the two statements.</li>
* <li>Sybase and SQLite allow for retrieving IDENTITY values as
* <code>@@identity</code> or <code>last_inserted_rowid()</code> values. Those
* values are fetched in a separate <code>SELECT</code> statement. If other
* fields are requested, a second statement is issued. Client code must assure
* transactional integrity between the two statements.</li>
* <li>Ingres support will be added with #808</li>
* </ul>
*
* @author Lukas Eder