src/main/java/org/mariadb/jdbc/SimpleParameterMetaData.java [98:107]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public int getPrecision(int param) throws SQLException {
    if (param < 1 || param > parameterCount) {
      throw ExceptionFactory.INSTANCE.create(
          String.format(
              "Parameter metadata out of range : param was %s and must be in range 1 - %s",
              param, parameterCount),
          "07009");
    }
    throw ExceptionFactory.INSTANCE.create("Unknown parameter metadata precision");
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/mariadb/jdbc/SimpleParameterMetaData.java [110:119]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public int getScale(int param) throws SQLException {
    if (param < 1 || param > parameterCount) {
      throw ExceptionFactory.INSTANCE.create(
          String.format(
              "Parameter metadata out of range : param was %s and must be in range 1 - %s",
              param, parameterCount),
          "07009");
    }
    throw ExceptionFactory.INSTANCE.create("Unknown parameter metadata scale");
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



