From: Julien V. <coo...@us...> - 2003-03-02 13:43:34
|
User: cooperfbi Date: 03/03/02 05:43:33 Modified: src/etc/conf/default Tag: Branch_3_2 standardjbosscmp-jdbc.xml Log: backported various vendor create commands to Branch_3_2 Revision Changes Path No revision No revision 1.39.2.12 +14 -1 jboss/src/etc/conf/default/standardjbosscmp-jdbc.xml Index: standardjbosscmp-jdbc.xml =================================================================== RCS file: /cvsroot/jboss/jboss/src/etc/conf/default/standardjbosscmp-jdbc.xml,v retrieving revision 1.39.2.11 retrieving revision 1.39.2.12 diff -u -r1.39.2.11 -r1.39.2.12 --- standardjbosscmp-jdbc.xml 27 Jan 2003 22:08:58 -0000 1.39.2.11 +++ standardjbosscmp-jdbc.xml 2 Mar 2003 13:43:33 -0000 1.39.2.12 @@ -7,7 +7,7 @@ <!-- --> <!-- ===================================================================== --> -<!-- $Id: standardjbosscmp-jdbc.xml,v 1.39.2.11 2003/01/27 22:08:58 binaryfeed Exp $ --> +<!-- $Id: standardjbosscmp-jdbc.xml,v 1.39.2.12 2003/03/02 13:43:33 cooperfbi Exp $ --> <jbosscmp-jdbc> @@ -2121,6 +2121,18 @@ <entity-command name="mysql-get-generated-keys" class="org.jboss.ejb.plugins.cmp.jdbc.mysql.JDBCMySQLCreateCommand"/> + <!-- retrieves generated key of the record inserted into hsql db --> + <entity-command name="hsqldb-fetch-key" + class="org.jboss.ejb.plugins.cmp.jdbc.hsqldb.JDBCHsqldbCreateCommand"/> + + <!-- retrieves generated key of the record inserted into sybase db --> + <entity-command name="sybase-fetch-key" + class="org.jboss.ejb.plugins.cmp.jdbc.sybase.JDBCSybaseCreateCommand"/> + + <!-- retrieves serial value of the record inserted into informix db --> + <entity-command name="informix-serial" + class="org.jboss.ejb.plugins.cmp.jdbc.informix.JDBCInformixCreateCommand"/> + <!-- uses key generator to fetch the next key value --> <entity-command name="key-generator" class="org.jboss.ejb.plugins.cmp.jdbc.JDBCKeyGeneratorCreateCommand"> @@ -2132,5 +2144,6 @@ class="org.jboss.ejb.plugins.cmp.jdbc.jdbc3.JDBCGetGeneratedKeysCreateCommand"/> --> </entity-commands> + </jbosscmp-jdbc> |