clickhouse-java icon indicating copy to clipboard operation
clickhouse-java copied to clipboard

[JDBC] ParameterMetadata column type inference

Open chernser opened this issue 6 months ago • 0 comments

Description

There are several method that are used to get information about parameter types. We may not know parameters upfront but should do all best to return a correct and not confusing results.

Here is list of these methods:

  • getParameterCount()
  • isSigned(int param)
  • getPrecision(int param)
  • isNullable(int param)
  • getScale(int param)
  • getParameterType(int param)
  • getParameterTypeName(int param)
  • getParameterClassName(int param)
  • getParameterMode(int param)

chernser avatar Jun 04 '25 03:06 chernser