Package net.snowflake.client.jdbc
Annotation Type SnowflakeColumn
-
@Target(FIELD) @Retention(RUNTIME) public @interface SnowflakeColumn
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description int
byteLength
(Optional) The length for a column of SQL typebinary
, or of similar database-native type.int
length
(Optional) The length for a column of SQL typevarchar
orbinary
, or of similar database-native type.String
name
(Optional) The name for a column in database,boolean
nullable
(Optional) The snowflake nullable flag for a columnint
precision
(Optional) The precision for a column of SQL typedecimal
ornumeric
, or of similar database-native type.int
scale
(Optional) The scale for a column of SQL typedecimal
ornumeric
, or of similar database-native type.String
type
(Optional) The snowflake type for a column
-
-
-
Element Detail
-
name
String name
(Optional) The name for a column in database,- Returns:
- The default value is empty string. Provided name can override SqlData field name.
- Default:
- ""
-
-
-
type
String type
(Optional) The snowflake type for a column- Returns:
- The default value is empty string Provided type can override default type.
- Default:
- ""
-
-