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

package info.globalcode.sql.dk;

import java.sql.Connection;
import java.sql.PreparedStatement;

/**
 *
 * @author Ing. František Kučera (frantovo.cz)
 */
public class SQLCommandNumbered 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.
	}
}