java/sql-dk/src/info/globalcode/sql/dk/SQLCommandNumbered.java
author František Kučera <franta-hg@frantovo.cz>
Sun, 15 Dec 2013 19:20:50 +0100
branchv_0
changeset 1 f32dac78d13a
child 16 5b8fcd35d4d6
permissions -rw-r--r--
WOW some classes LOL; TODO: refactor
     1 package info.globalcode.sql.dk;
     2 
     3 import java.sql.Connection;
     4 import java.sql.PreparedStatement;
     5 
     6 /**
     7  *
     8  * @author Ing. František Kučera (frantovo.cz)
     9  */
    10 public class SQLCommandNumbered extends SQLCommand {
    11 
    12 	@Override
    13 	public PreparedStatement prepareStatement(Connection c) {
    14 		throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    15 	}
    16 
    17 	@Override
    18 	public void parametrize(PreparedStatement ps) {
    19 		throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    20 	}
    21 }