← Back to carmenta.com
Carmenta Engine SDK Documentation
×

OracleDataSet Class

A dataset that reads spatial data from an Oracle database.

Namespace: Carmenta.Engine
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CEDataSets assembly)
Thread safety: Members defined in this class are, in general, not thread-safe. Show

Syntax

C#
public class OracleDataSet : DatabaseDataSet

Remarks

This dataset reads spatial data stored in a Oracle Database version 10g Release 2 (10.2.0.1) or later.

The database table that should be read by the dataset have to satisfy the following requirements:

  • The column used as the KeyColumn must be of integer type.

  • The column used as the GeometryColumn must be of type SDO_GEOMETRY.

  • The table containing the geometry data should have a spatial index.

The <server name> part of the ConnectionString property can include the port number and service name by using the following format:

<host name>:<port number>/<servicename>

The following data types can be read and stored as attributes:

Attribute data type

Database data type

Integer

NUMBER

Floating point number

BINARY_DOUBLE, BINARY_FLOAT, NUMBER

String

CHAR, NCHAR, VARCHAR2, NVARCHAR2, DATE, TIMESTAMP

When a OracleDataSet reads a multi geometry from the database it will be split into separate parts. For example, a multi point will result in one or more point features. The Feature.Id of each part will be the same which can be used to identify which parts belong to which multi geometry. Each part will also have a sourceGeoType attribute that specifies the kind of multi geometry it was originally a part of. The following table lists the possible values (remember that when atoms are specified in Carmenta Studio they always begin with a hash mark):

Value of sourceGeoType

Description

multiPoint

Indicates that a point feature was originally part of a multi-point.

multiLine

Indicates that a line feature was originally part of a multi-line.

multiPolygon

Indicates that a polygon feature was originally part of a multi-polygon.

multiGeometry

Indicates that a vector feature was originally part of a multi-geometry.

Oracle specific options that can be set in the Options property:

Name

Description

NLS_DATE_FORMAT

Any valid Oracle date format mask. Example: YYYY-MM-DD

NLS_TIMESTAMP_FORMAT

Any valid Oracle datetime format mask. Exampel: YYYY-MM-DD HH:MI:SS

Prerequisites

To be able to use this dataset, additional database-specific client software must be installed on the machine.

Windows

To use the OracleDataSet "Oracle Instant Client" must be installed. Download and install "Instant Client for Microsoft Windows" from Oracle downloads.

Linux

To use the OracleDataSet "Oracle Instant Client" must be installed. Download and install "Instant Client for Linux" from Oracle downloads.

Inheritance Hierarchy

System.Object (not available in C#)
  EngineObject
    ResourceObject
      DataSet
        DatabaseDataSet
          OracleDataSet

Platforms

Windows, Linux, Android

See Also

Reference

DataSets Module

OracleDataSet Members

The OracleDataSet type has the following members.

Constructors

NameDescription
OracleDataSetInitializes a new instance of the OracleDataSet class.

Properties

NameDescription
IReadAttributes.AttributesGets a collection whose contents determine which attributes will be read the DataSet. Inherited from IReadAttributes
BoundsGets or sets the bounding rectangle of the dataset. Inherited from DataSet
CommandTimeoutGets or sets a value indicating how long the dataset should wait before considering a command as failed. Inherited from DatabaseDataSet
ConnectionStringGets the connection string used to connect to the database. Inherited from DatabaseDataSet
ConnectTimeoutGets or sets a value indicating how long the dataset should wait before considering a connection attempt as failed. Inherited from DatabaseDataSet
CrsGets or sets the coordinate reference system of the OracleDataSet. Inherited from DataSet
DescriptionGets or sets a short description of the dataset. Inherited from DataSet
DisplayNameGets or sets a display name for the dataset. Inherited from DataSet
GeometryColumnGets or sets the name of the column that contains the geometry of spatial data. Inherited from DatabaseDataSet
IdGets a unique identifier for this dataset instance. Inherited from DataSet
IsDisposedGets a value that tells whether the current OracleDataSet has been disposed. Inherited from EngineObject
IsolationLevelGets or sets the isolation level of database transactions. Inherited from DatabaseDataSet
IsoMetadataDocumentGets or sets the path to an ISO 19139 metadata document for the dataset. Inherited from DataSet
KeyColumnGets or sets the name of the column that is used as the identity of the generated features. Inherited from DatabaseDataSet
NameGets or sets the name of the OracleDataSet. Inherited from ResourceObject
NativeHandleGets the native Carmenta Engine kernel object the current OracleDataSet represents. Inherited from EngineObject
OptionsGets or sets an AttributeSet that contains database connection options. Inherited from DatabaseDataSet
PasswordGets or sets the password used when connecting to the database. Inherited from DatabaseDataSet
IReadAttributes.ReadAttributesGets or sets a value indicating whether the DataSet reads attributes. Inherited from IReadAttributes
SridGets or sets the Spatial Reference Identifier to use in SQL queries. Inherited from DatabaseDataSet
SuppressInitializationErrorsGets or sets a flag indicating how errors during dataset initialization are handled. Inherited from DataSet
SwitchXYGets or sets a value that determines whether the x and y-coordinates are switched. Inherited from DatabaseDataSet
TableGets or sets the name of the table that the dataset reads from. Inherited from DatabaseDataSet
ThrowExceptionsGets or sets a flag indicating if exceptions should be thrown when an error occurs. Inherited from DatabaseDataSet
UserGets or sets the name of the user that is used when connecting to the database. Inherited from DatabaseDataSet
IUserProperties.UserPropertiesGets the AttributeSet that contains the user properties. Inherited from IUserProperties

Methods

NameDescription
CloneCreates a copy of an object. Inherited from EngineObject
DisposeReleases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject
EqualsDetermines whether this instance is equal to another. Inherited from EngineObject
FindChildObjectOverloaded. Finds the child object with the specified name. Inherited from DataSet
FlushCacheFrees any information the dataset may have cached, including all cached features. Inherited from DataSet
GetChildObjectsOverloaded. Gets the child objects of the current object. Inherited from DataSet
GetDataCoverageGets coverage information for this dataset in a given area. Inherited from DataSet
Static GetDataSetByIdLooks up an existing dataset instance from a dataset identity. Inherited from DataSet
GetDataSetInfoReturns a dataset info that describes the contents of this dataset. Inherited from DataSet
GetDataSetInfoAsyncMakes an asynchronous call to GetDataSetInfo. Inherited from DataSet
GetFeatureGets the feature with the specified identity. Inherited from DataSet
GetFeaturesOverloaded. Gets features from the dataset. Inherited from DataSet
GetFloatValueAtOverloaded. Gets the float raster value from a cell at the specified position. Inherited from DataSet
GetFloatValuesAtOverloaded. Gets a number of float raster values. Inherited from DataSet
GetLocalizedDescriptionGets a localized version of the dataset description in a specific language. Inherited from DataSet
GetLocalizedDisplayNameGets a localized version of the dataset display name in a specific language. Inherited from DataSet
GetLocalizedIsoMetadataDocumentGets the path to an ISO 19139 metadata document for a specific language. Inherited from DataSet
GetNormalizedFloatValueAtOverloaded. Gets the raster value from a cell at the specified position, normalized by Scale and Offset. Inherited from DataSet
GetNormalizedFloatValuesAtOverloaded. Gets a number of raster values, normalized by Scale and Offset. Inherited from DataSet
GetTableInformationObtains information about a database table. Inherited from DatabaseDataSet
GetValueAtOverloaded. Gets the integer value from a raster cell at the specified position. Inherited from DataSet
GetValuesAtOverloaded. Gets a number of raster values. Inherited from DataSet
HasLocalizedDescriptionChecks if a localized version of the dataset description is available in a specific language. Inherited from DataSet
HasLocalizedDisplayNameChecks if a localized version of the dataset display name is available in a specific language. Inherited from DataSet
HasLocalizedIsoMetadataDocumentChecks if an ISO 19139 metadata document is available for a specific language. Inherited from DataSet
HighestRasterValueFinds the highest raster value inside the given polygon. Inherited from DataSet
InitializeInitializes the dataset. Inherited from DataSet
IsConnectedChecks the database connection status. Inherited from DatabaseDataSet
ReconnectReconnects to the database. Inherited from DatabaseDataSet
SetLocalizedDescriptionSets a dataset description in a specific language. Inherited from DataSet
SetLocalizedDisplayNameSets a dataset display name in a specific language. Inherited from DataSet
SetLocalizedIsoMetadataDocumentSets the path to an ISO 19139 metadata document for the dataset, for a specific language. Inherited from DataSet
StartConnectStarts a connection to the database, without waiting for it to complete. Inherited from DatabaseDataSet
TryGetFloatValueAtOverloaded. Gets the float value from a raster cell at the specified position. Inherited from DataSet
TryGetNormalizedFloatValueAtOverloaded. Gets the float value from a raster cell at the specified position, normalized by Scale and Offset. Inherited from DataSet
TryGetValueAtOverloaded. Gets the integer value from a raster cell at the specified position. Inherited from DataSet

By accessing the information on this site you accept our terms and conditions and privacy policy.
This site uses cookies to enhance your experience and provide additional functionality.

Accept