java/sql-dk/src/info/globalcode/sql/dk/SQLCommandNamed.java
branchv_0
changeset 1 f32dac78d13a
child 16 5b8fcd35d4d6
equal deleted inserted replaced
0:29df3b2e34df 1:f32dac78d13a
       
     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 SQLCommandNamed 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 }