001 /*
002 @license.text@
003 */
004 package biz.hammurapi.sql;
005
006
007 /**
008 * Invokes select @@IDENTITY
009 * @author Pavel Vlasov
010 * @revision $Revision$
011 */
012 public class MsSqlIdentityRetriever extends GenericIdentityRetriever {
013
014 public MsSqlIdentityRetriever() {
015 super("SELECT @@IDENTITY");
016 }
017
018 }