Show / Hide Table of Contents

Class ColumnSummary

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

Inheritance
object
ColumnSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class ColumnSummary

Properties

CharacterLength

Declaration
[JsonProperty(PropertyName = "characterLength")]
public int? CharacterLength { get; set; }
Property Value
Type Description
int?

Character length.

ColumnName

Declaration
[Required(ErrorMessage = "ColumnName is required.")]
[JsonProperty(PropertyName = "columnName")]
public string ColumnName { get; set; }
Property Value
Type Description
string

Name of the column.

Remarks

Required

DataType

Declaration
[Required(ErrorMessage = "DataType is required.")]
[JsonProperty(PropertyName = "dataType")]
public string DataType { get; set; }
Property Value
Type Description
string

Data type of the column.

Remarks

Required

Length

Declaration
[Required(ErrorMessage = "Length is required.")]
[JsonProperty(PropertyName = "length")]
public long? Length { get; set; }
Property Value
Type Description
long?

Length of the data represented by the column.

Remarks

Required

Precision

Declaration
[JsonProperty(PropertyName = "precision")]
public int? Precision { get; set; }
Property Value
Type Description
int?

Precision of the column.

Scale

Declaration
[JsonProperty(PropertyName = "scale")]
public int? Scale { get; set; }
Property Value
Type Description
int?

Scale of the column.

SchemaName

Declaration
[Required(ErrorMessage = "SchemaName is required.")]
[JsonProperty(PropertyName = "schemaName")]
public string SchemaName { get; set; }
Property Value
Type Description
string

Name of the schema.

Remarks

Required

TableName

Declaration
[Required(ErrorMessage = "TableName is required.")]
[JsonProperty(PropertyName = "tableName")]
public string TableName { get; set; }
Property Value
Type Description
string

Name of the table.

Remarks

Required

In this article
Back to top