Package org.jboss.ejb.plugins.cmp.jdbc.keygen

Class Summary
GetTCLAction (src)  
JDBC30GeneratedKeysCreateCommand (src) Create method that uses the JDBC 3.0 getGeneratedKeys method to obtain the value from the identity column.
JDBCDB2IdentityValLocalCreateCommand (src) Create method that uses the identity_val_local() function in DB2 to get get the ID of the last inserted row, and populate it into the EJB object being created.
JDBCHsqldbCreateCommand (src) Create command for Hypersonic that generated keys using an IDENTITY column.
JDBCInformixCreateCommand (src) Create command for Informix that uses the driver's getSerial method to retrieve SERIAL values.
JDBCKeyGeneratorCreateCommand (src) JDBCKeyGeneratorCreateCommand executes an INSERT INTO query.
JDBCMySQLCreateCommand (src) Create command for MySQL that uses the driver's getGeneratedKeys method to retrieve AUTO_INCREMENT values.
JDBCOracleCreateCommand (src) Create command for use with Oracle that uses a sequence in conjuction with a RETURNING clause to generate keys in a single statement
JDBCOracleSequenceCreateCommand (src) Create command for use with Oracle that uses a sequence in conjuction with a RETURNING clause to generate keys in a single statement The sequence is called by the parameter attribute "sequence_name".
JDBCPkSqlCreateCommand (src) Create command that uses an SQL statement to generate the primary key.
JDBCPostgreSQLCreateCommand (src) Create command for PostgreSQL that fetches the currval of the sequence associated with a SERIAL column in this table.
JDBCSQLServerCreateCommand (src) Create command for Microsoft SQL Server that uses the value from an IDENTITY columns.
JDBCSybaseCreateCommand (src) Create command for Sybase that uses the value from an IDENTITY columns.