Show / Hide Table of Contents

Class ExecuteSqlResponseItemResultSetMetadata

Metadata of the column

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

Properties

ColumnTypeName

Declaration
[JsonProperty(PropertyName = "columnTypeName")]
public string ColumnTypeName { get; set; }
Property Value
Type Description
string

Oracle Database data type of the column.

DatabaseColumnName

Declaration
[JsonProperty(PropertyName = "databaseColumnName")]
public string DatabaseColumnName { get; set; }
Property Value
Type Description
string

Name of the column in the Oracle Database.

IsNullable

Declaration
[JsonProperty(PropertyName = "isNullable")]
public bool? IsNullable { get; set; }
Property Value
Type Description
bool?

Specifies if the column is nullable (0 if the column is not nullable)

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.

UniqueColumnName

Declaration
[JsonProperty(PropertyName = "uniqueColumnName")]
public string UniqueColumnName { get; set; }
Property Value
Type Description
string

Name of the column in the response Result Set.

In this article
Back to top