1 21 22 package org.apache.derby.impl.jdbc; 23 24 import java.sql.SQLException ; 25 26 40 41 public final class EmbedPreparedStatement169 extends EmbedPreparedStatement 42 { 43 public EmbedPreparedStatement169(EmbedConnection conn, String sql, 44 boolean forMetaData, int resultSetType, int resultSetConcurrency, 45 int resultSetHoldability, int autoGeneratedKeys, 46 int[] columnIndexes, String [] columnNames) throws SQLException { 47 48 super(conn, sql, forMetaData, resultSetType, resultSetConcurrency, 49 resultSetHoldability, autoGeneratedKeys, columnIndexes, 50 columnNames); 51 } 52 } | Popular Tags |