java/sql-dk/src/info/globalcode/sql/dk/SQLCommandNumbered.java
branchv_0
changeset 1 f32dac78d13a
child 16 5b8fcd35d4d6
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/java/sql-dk/src/info/globalcode/sql/dk/SQLCommandNumbered.java	Sun Dec 15 19:20:50 2013 +0100
     1.3 @@ -0,0 +1,21 @@
     1.4 +package info.globalcode.sql.dk;
     1.5 +
     1.6 +import java.sql.Connection;
     1.7 +import java.sql.PreparedStatement;
     1.8 +
     1.9 +/**
    1.10 + *
    1.11 + * @author Ing. František Kučera (frantovo.cz)
    1.12 + */
    1.13 +public class SQLCommandNumbered extends SQLCommand {
    1.14 +
    1.15 +	@Override
    1.16 +	public PreparedStatement prepareStatement(Connection c) {
    1.17 +		throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.18 +	}
    1.19 +
    1.20 +	@Override
    1.21 +	public void parametrize(PreparedStatement ps) {
    1.22 +		throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.23 +	}
    1.24 +}