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 intbyteLength(Optional) The length for a column of SQL typebinary, or of similar database-native type.intlength(Optional) The length for a column of SQL typevarcharorbinary, or of similar database-native type.Stringname(Optional) The name for a column in database,booleannullable(Optional) The snowflake nullable flag for a columnintprecision(Optional) The precision for a column of SQL typedecimalornumeric, or of similar database-native type.intscale(Optional) The scale for a column of SQL typedecimalornumeric, or of similar database-native type.Stringtype(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:
- ""
-
-