1 21 22 package org.apache.derby.impl.jdbc; 23 24 import java.math.BigDecimal ; 25 26 import java.sql.ParameterMetaData ; 27 import java.sql.SQLException ; 28 29 30 import org.apache.derby.impl.jdbc.Util; 31 import org.apache.derby.impl.jdbc.EmbedConnection; 32 33 34 47 public class EmbedCallableStatement30 extends EmbedCallableStatement20 48 { 49 50 public EmbedCallableStatement30 (EmbedConnection conn, String sql, 56 int resultSetType, 57 int resultSetConcurrency, 58 int resultSetHoldability) 59 throws SQLException 60 { 61 super(conn, sql, resultSetType, resultSetConcurrency, resultSetHoldability); 62 } 63 64 71 72 82 public ParameterMetaData getParameterMetaData() 83 throws SQLException 84 { 85 checkStatus(); 86 if (preparedStatement == null) 87 return null; 88 89 return new EmbedParameterMetaData30( 90 getParms(), preparedStatement.getParameterTypes()); 91 } 92 93 } 94 95 96 97 98 99 100 101 102 103 104 105 | Popular Tags |