franta-hg@1: package info.globalcode.sql.dk; franta-hg@1: franta-hg@1: import java.sql.Connection; franta-hg@1: import java.sql.PreparedStatement; franta-hg@1: franta-hg@1: /** franta-hg@1: * franta-hg@1: * @author Ing. František Kučera (frantovo.cz) franta-hg@1: */ franta-hg@1: public class SQLCommandNumbered extends SQLCommand { franta-hg@1: franta-hg@1: @Override franta-hg@1: public PreparedStatement prepareStatement(Connection c) { franta-hg@1: throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. franta-hg@1: } franta-hg@1: franta-hg@1: @Override franta-hg@1: public void parametrize(PreparedStatement ps) { franta-hg@1: throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. franta-hg@1: } franta-hg@1: }