Class ExecuteSqlResponseItemResultSetMetadata
Metadata of the column
Inherited Members
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. |