001    /*
002    @license.text@
003     */
004    package biz.hammurapi.sql.hypersonic;
005    
006    import biz.hammurapi.sql.GenericIdentityRetriever;
007    
008    /**
009     * Calls IDENTITY() function to retrieve last identity
010     * @author Pavel Vlasov
011     * @revision $Revision$
012     */
013    public class HypersonicIdentityRetriever extends GenericIdentityRetriever {
014            
015            public HypersonicIdentityRetriever() {
016                    super("CALL IDENTITY()");
017            }
018    
019    }