JDBCCreateEntityCommand.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.ejb.plugins.cmp.jdbc; /** * JDBCCreateEntityCommand executes an INSERT INTO query. * This command will only insert non-read-only columns. If a primary key * column is read-only this command will throw a CreateException. * * @author <a href="mailto:dain@daingroup.com">Dain Sundstrom</a> * @author <a href="mailto:rickard.oberg@telkel.com">Rickard Öberg</a> * @author <a href="mailto:marc.fleury@telkel.com">Marc Fleury</a> * @author <a href="mailto:shevlandj@kpi.com.au">Joe Shevland</a> * @author <a href="mailto:justin@j-m-f.demon.co.uk">Justin Forder</a> * @author <a href="mailto:loubyansky@hotmail.com">Alex Loubyansky</a> * * @version $Revision: 1.28 $ */ public final class JDBCCreateEntityCommand extends JDBCInsertPKCreateCommand { }
JDBCCreateEntityCommand.java |