1 7 8 package java.sql; 9 10 16 17 public interface ParameterMetaData { 18 19 28 int getParameterCount() throws SQLException ; 29 30 41 int isNullable(int param) throws SQLException ; 42 43 47 int parameterNoNulls = 0; 48 49 53 int parameterNullable = 1; 54 55 59 int parameterNullableUnknown = 2; 60 61 69 boolean isSigned(int param) throws SQLException ; 70 71 79 int getPrecision(int param) throws SQLException ; 80 81 89 int getScale(int param) throws SQLException ; 90 91 100 int getParameterType(int param) throws SQLException ; 101 102 111 String getParameterTypeName(int param) throws SQLException ; 112 113 114 127 String getParameterClassName(int param) throws SQLException ; 128 129 132 int parameterModeUnknown = 0; 133 134 137 int parameterModeIn = 1; 138 139 142 int parameterModeInOut = 2; 143 144 147 int parameterModeOut = 4; 148 149 161 int getParameterMode(int param) throws SQLException ; 162 } 163 | Popular Tags |