Package org.jdbf.engine.mapping

Examples of org.jdbf.engine.mapping.SequenceMap


    logger.log(Level.INFO,Messages.message("SequenceKeyGen.generateKey"));
    // Create SQL sentence of the form
    // "SELECT nextval(sequenceName)"
    try {
     
        SequenceMap sequenceMap = (SequenceMap)view.getBeanDescriptor().getGeneratorMap();
        stmt = conn.createStatement();
        rs = stmt.executeQuery(
            sqlInterface.getSelectSequenceStatement(
                sequenceMap.getSequenceName()));
        if (rs.next()) {
            identity = rs.getObject(1);       
        }
        else
                logger.throwing(CLASS_NAME,"generateKey()",
View Full Code Here

TOP

Related Classes of org.jdbf.engine.mapping.SequenceMap

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.