1 21 package org.apache.derby.iapi.jdbc; 22 23 import java.sql.SQLException ; 24 import java.sql.PreparedStatement ; 25 26 27 37 public interface EngineParameterMetaData { 38 39 45 public int getParameterCount(); 46 47 56 public int isNullable(int param) throws SQLException ; 57 58 65 public boolean isSigned(int param) throws SQLException ; 66 67 74 public int getPrecision(int param) throws SQLException ; 75 76 83 public int getScale(int param) throws SQLException ; 84 92 public int getParameterType(int param) throws SQLException ; 93 102 public String getParameterTypeName(int param) throws SQLException ; 103 104 115 public String getParameterClassName(int param) throws SQLException ; 116 117 126 public int getParameterMode(int param) throws SQLException ; 127 128 } 129 | Popular Tags |