diff -r 29df3b2e34df -r f32dac78d13a java/sql-dk/src/info/globalcode/sql/dk/SQLCommandNamed.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/java/sql-dk/src/info/globalcode/sql/dk/SQLCommandNamed.java Sun Dec 15 19:20:50 2013 +0100 @@ -0,0 +1,21 @@ +package info.globalcode.sql.dk; + +import java.sql.Connection; +import java.sql.PreparedStatement; + +/** + * + * @author Ing. František Kučera (frantovo.cz) + */ +public class SQLCommandNamed extends SQLCommand { + + @Override + public PreparedStatement prepareStatement(Connection c) { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + @Override + public void parametrize(PreparedStatement ps) { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } +}