ColumnSummary

class oci.data_safe.models.ColumnSummary(**kwargs)

Bases: object

The details of a column in a table fetched from the database.

Methods

__init__(**kwargs) Initializes a new ColumnSummary object with values from keyword arguments.

Attributes

character_length Gets the character_length of this ColumnSummary.
column_name [Required] Gets the column_name of this ColumnSummary.
data_type [Required] Gets the data_type of this ColumnSummary.
length [Required] Gets the length of this ColumnSummary.
precision Gets the precision of this ColumnSummary.
scale Gets the scale of this ColumnSummary.
schema_name [Required] Gets the schema_name of this ColumnSummary.
table_name [Required] Gets the table_name of this ColumnSummary.
__init__(**kwargs)

Initializes a new ColumnSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • column_name (str) – The value to assign to the column_name property of this ColumnSummary.
  • data_type (str) – The value to assign to the data_type property of this ColumnSummary.
  • length (int) – The value to assign to the length property of this ColumnSummary.
  • precision (int) – The value to assign to the precision property of this ColumnSummary.
  • scale (int) – The value to assign to the scale property of this ColumnSummary.
  • character_length (int) – The value to assign to the character_length property of this ColumnSummary.
  • table_name (str) – The value to assign to the table_name property of this ColumnSummary.
  • schema_name (str) – The value to assign to the schema_name property of this ColumnSummary.
character_length

Gets the character_length of this ColumnSummary. Character length.

Returns:The character_length of this ColumnSummary.
Return type:int
column_name

[Required] Gets the column_name of this ColumnSummary. Name of the column.

Returns:The column_name of this ColumnSummary.
Return type:str
data_type

[Required] Gets the data_type of this ColumnSummary. Data type of the column.

Returns:The data_type of this ColumnSummary.
Return type:str
length

[Required] Gets the length of this ColumnSummary. Length of the data represented by the column.

Returns:The length of this ColumnSummary.
Return type:int
precision

Gets the precision of this ColumnSummary. Precision of the column.

Returns:The precision of this ColumnSummary.
Return type:int
scale

Gets the scale of this ColumnSummary. Scale of the column.

Returns:The scale of this ColumnSummary.
Return type:int
schema_name

[Required] Gets the schema_name of this ColumnSummary. Name of the schema.

Returns:The schema_name of this ColumnSummary.
Return type:str
table_name

[Required] Gets the table_name of this ColumnSummary. Name of the table.

Returns:The table_name of this ColumnSummary.
Return type:str