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
franta-hg@1
     1
package info.globalcode.sql.dk;
franta-hg@1
     2
franta-hg@1
     3
import java.sql.Connection;
franta-hg@1
     4
import java.sql.PreparedStatement;
franta-hg@1
     5
franta-hg@1
     6
/**
franta-hg@1
     7
 *
franta-hg@1
     8
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@1
     9
 */
franta-hg@1
    10
public class SQLCommandNumbered extends SQLCommand {
franta-hg@1
    11
franta-hg@1
    12
	@Override
franta-hg@1
    13
	public PreparedStatement prepareStatement(Connection c) {
franta-hg@1
    14
		throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
franta-hg@1
    15
	}
franta-hg@1
    16
franta-hg@1
    17
	@Override
franta-hg@1
    18
	public void parametrize(PreparedStatement ps) {
franta-hg@1
    19
		throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
franta-hg@1
    20
	}
franta-hg@1
    21
}