OracleCommand Object
The OracleCommand
object represents SQL statements executed on Oracle Database.
Note:
Optimizer hint syntax in the form --+ ...
is not supported. ODP.NET supports this syntax: /*+ ... */
.
This section includes the following topics:
Command Auto-Commit
By default, ODP.NET commits each SQL operation immediately upon execution outside of a transaction. Starting with 23ai, managed ODP.NET and ODP.NET Core can disable auto-commit so that SQL statements are executed only after an explicit commit statement.
Unmanaged ODP.NET cannot disable auto-commit without a transaction.
Developers disable auto-commit by setting the OracleConnection
AutoCommit
property to false. ODP.NET can then start transactions implicitly. After the AutoCommit
property is set, that setting is honored for all subsequent Open()
calls on that specific OracleConnection
object until the AutoCommit
value is modified.
OracleConnection
includes APIs to manage local transactions, such as the ability to commit, rollback, and create savepoints. It can check if the application is currently within a transaction. It can set the transaction isolation level.
When AutoCommit
is set while enlisted in an explicit (that is, BeginTransaction
), local, or distributed (that is, System.Transactions
) transaction, an error will occur. Calling any OracleConnection
transaction management API while enlisted in System.Transactions
will also result in an error.
Transactions
Oracle Database starts a transaction only in the context of a connection. Once a transaction starts, all the successive command execution on that connection run in the context of that transaction. Transactions can be started only on an OracleConnection
object, and the read-only Transaction
property on the OracleCommand
object is implicitly set by the OracleConnection
object. Therefore, the application cannot set the Transaction
property, nor does it need to.
Explicit transactions are required with SQL statements containing "FOR
UPDATE"
and "RETURNING"
clauses. This is not necessary if global transactions are used.
System.Transactions and Promotable Transactions
ODP.NET supports System.Transactions
. A local transaction is created for the first connection opened in the System.Transactions
scope to Oracle Database. When a second connection is opened, this transaction is automatically promoted to a distributed transaction. This functionality provides enhanced performance and scalability.
Connections created within a transaction context, such as TransactionScope
or ServicedComponent
, can be established to different versions of Oracle Database. However, in order to enable the local transaction to be promotable, the following must be true:
-
The first connection in the transaction context must be established to an Oracle Database.
-
Promoting local transactions requires Oracle Services for Microsoft Transaction Server. If this requirement is not met, then a second connection request in the same transaction context throws an exception.
Transaction promotion will throw an ORA-24797 error when the database transaction is already distributed due to the use of database links.
If applications use System.Transactions
, it is required that the enlist
connection string attribute is set to either true
(default) or dynamic
. However, enlist=dynamic
cannot be used with TransactionScope
because auto-enlistment requires enlist=true
.
ODP.NET supports the following System.Transactions
programming models for applications using distributed transactions.
Note:
ODP.NET Core does not support distributed transactions
Implicit Transaction Enlistment Using TransactionScope
The TransactionScope
class provides a mechanism to write transactional applications where the applications do not need to explicitly enlist in transactions.To accomplish this, the application uses the TransactionScope
object to define the transactional code. Connections created within this transactional scope will enlist in a local transaction that can be promoted to a distributed transaction.
Note that the application must call the Complete
method on the TransactionScope
object to commit the changes. Otherwise, the transaction is aborted by default.
// C# using System; using Oracle.DataAccess.Client; using System.Data; using System.Data.Common; using System.Transactions; class psfTxnScope { static void Main() { int retVal = 0; string providerName = "Oracle.DataAccess.Client"; string constr = @"User Id=scott;Password=tiger;Data Source=oracle;enlist=true"; // Get the provider factory. DbProviderFactory factory = DbProviderFactories.GetFactory(providerName); try { // Create a TransactionScope object, (It will start an ambient // transaction automatically). using (TransactionScope scope = new TransactionScope()) { // Create first connection object. using (DbConnection conn1 = factory.CreateConnection()) { // Set connection string and open the connection. this connection // will be automatically enlisted in a promotable local transaction. conn1.ConnectionString = constr; conn1.Open(); // Create a command to execute the sql statement. DbCommand cmd1 = factory.CreateCommand(); cmd1.Connection = conn1; cmd1.CommandText = @"insert into emp (empno, ename, job) values (1234, 'emp1', 'dev1')"; // Execute the SQL statement to insert one row in DB. retVal = cmd1.ExecuteNonQuery(); Console.WriteLine("Rows to be affected by cmd1: {0}", retVal); // Close the connection and dispose the command object. conn1.Close(); conn1.Dispose(); cmd1.Dispose(); } // The Complete method commits the transaction. If an exception has // been thrown or Complete is not called then the transaction is // rolled back. scope.Complete(); } } catch (Exception ex) { Console.WriteLine(ex.Message); Console.WriteLine(ex.StackTrace); } } }
Explicit Transaction Enlistment Using CommittableTransaction
The instantiation of the CommittableTransaction
object and the EnlistTransaction
method provides an explicit way to create and enlist in a transaction. Note that the application must call Commit
or Rollback
on the CommittableTransaction
object.
// C# using System; using Oracle.DataAccess.Client; using System.Data; using System.Data.Common; using System.Transactions; class psfEnlistTransaction { static void Main() { int retVal = 0; string providerName = "Oracle.DataAccess.Client"; string constr = @"User Id=scott;Password=tiger;Data Source=oracle;enlist=dynamic"; // Get the provider factory. DbProviderFactory factory = DbProviderFactories.GetFactory(providerName); try { // Create a committable transaction object. CommittableTransaction cmtTx = new CommittableTransaction(); // Open a connection to the DB. DbConnection conn1 = factory.CreateConnection(); conn1.ConnectionString = constr; conn1.Open(); // enlist the connection with the commitable transaction. conn1.EnlistTransaction(cmtTx); // Create a command to execute the sql statement. DbCommand cmd1 = factory.CreateCommand(); cmd1.Connection = conn1; cmd1.CommandText = @"insert into emp (empno, ename, job) values (1234, 'emp1', 'dev1')"; // Execute the SQL statement to insert one row in DB. retVal = cmd1.ExecuteNonQuery(); Console.WriteLine("Rows to be affected by cmd1: {0}", retVal); // commit/rollback the transaction. cmtTx.Commit(); // commits the txn. //cmtTx.Rollback(); // rolls back the txn. // close and dispose the connection conn1.Close(); conn1.Dispose(); cmd1.Dispose(); } catch (Exception ex) { Console.WriteLine(ex.Message); Console.WriteLine(ex.StackTrace); } } }
See Also:
Distributed Transactions
A distributed transaction includes one or more statements that, individually or as a group, update data on two or more distinct nodes of a distributed database.
ODP.NET, Managed and Unmanaged Drivers integrate with Microsoft Distributed Transaction Coordinator (MSDTC) and Oracle databases. MSDTC coordinates with all the resource managers that are enlisted to the same System.Transactions
object, to perform a 2-phrase commit or rollback atomically. With that, Oracle distributed transactions can then be committed or rolled back across networks properly.
ODP.NET only supports the read committed isolation level for distributed transactions.
Note:
ODP.NET Core does not support Distributed Transactions.
Microsoft Distributed Transaction Coordinator Integration
Managed ODP.NET includes a native fully managed implementation that supports integration with MSDTC for distributed transactions enlistments, commits, and rollbacks.
For unmanaged ODP.NET, Oracle Services for Microsoft Transaction (OraMTS) provides MSDTC integration that allows client components to participate in Oracle database distributed transactions. OraMTS act as a proxy for the Oracle database to MSDTC to ensure that Oracle distributed database transactions commit or rollback together with the rest of the distributed transaction.
Unmanaged ODP.NET can use either a managed or unmanaged OraMTS implementation. Oracle recommends using the managed OraMTS for applications requiring high availability from Oracle RAC or Data Guard.
If a failure occurs in a distributed transaction, such as a network failure or server hardware failure, then it can leave an in-process transaction in-doubt. Both managed and unmanaged ODP.NET use the OraMTS recovery service to resolve these in-doubt transactions. This recovery service runs as a Windows service. Administrators must install and configure the OraMTS Windows recovery service to manage recovery scenarios whether they use managed or unmanaged ODP.NET. Only one recovery service is needed per machine.
It is required to install the OraMTS Recovery Service on all the client machines where ODP.NET is running and participating in MSDTC. As a machine may have multiple IP addresses, administrators for managed ODP.NET applications can specify the host machine name or IP address that has the running recovery service in the application's .NET configuration file. ODP.NET, Unmanaged Driver resolves the IP/machine name for the recovery service automatically.
Table 3-14 Supported ODP.NET Type and .NET Framework Version for Distributed Transaction
ODP.NET Type | .NET Framework Version | Distributed Transaction Support |
---|---|---|
Managed |
4.8 |
.NET Framework's native managed implementation for distributed transactions. |
Unmanaged |
4.8 |
OraMTS (default) or managed OraMTS implementation. Oracle recommends using managed OraMTS for unmanaged ODP.NET applications requiring high availability from Oracle RAC or Data Guard. |
See Also:
Manually Creating an Oracle MTS Recovery Service in Oracle Services for Microsoft Transaction Server Developer's Guide for Microsoft Windows.
ODP.NET, Managed Driver Setup
This section explains the setup and configuration steps required for using distributed transactions with ODP.NET, Managed Driver. Follow these steps to configure distributed transactions in these .NET Framework versions:
-
Create and setup the OraMTS recovery service or make sure an existing recovery service is running.
-
Set the value of
OMTSRECO_PORT
in the .NET configuration to specify the port number that the OraMTS recovery service is running.
ODP.NET, Unmanaged Driver Setup
Note:
ODP.NET, Unmanaged Driver is deprecated in 23ai. See Oracle Database Upgrade Guide for more information.
This section explains the setup and configuration steps required for using distributed transactions with ODP.NET, Unmanaged Driver.
ODP.NET, Unmanaged Driver includes managed OraMTS in its assembly. OraMTS is the default option for ODP.NET, Unmanaged Driver, to ensure implementation continuity during upgrades. However, Oracle recommends the managed OraMTS option when using any high availability FAN operations (HA Events = true) with Oracle Real Application Clusters or Oracle Data Guard. The managed OraMTS option support high availability functionality, while the traditional OraMTS does not.
Applications can set OraMTS (default) or managed OraMTS usage through the UseOraMTSManaged
parameter in the .NET configuration file.
Install and configure OraMTS, including its recovery service to use traditional OraMTS implementation for ODP.NET, Unmanaged Driver.
To set managed OraMTS up, perform the following steps:
-
Set
UseOraMTSManaged
totrue
in the .NET configuration file. -
Create and setup the OraMTS recovery service or make sure an existing recovery service is running.
See Also:
distributedTransaction section for more information about .NET configuration setup
Parameter Binding
When the DbType
property of an OracleParameter
object is set, the OracleDbType
property of the OracleParameter
object changes accordingly, or vice versa. The parameter set last prevails.An application can bind the data and have ODP.NET infer both the DbType
and OracleDbType
properties from the .NET type of the parameter value.ODP.NET allows applications to obtain an output parameter as either a .NET Framework type or an ODP.NET type. The application can specify which type to return for an output parameter by setting the DbType
property of the output parameter (.NET type) or the OracleDbType
property (ODP.NET type) of the OracleParameter
object. For example, if the output parameter is set as a DbType.String
type by setting the DbType
property, the output data is returned as a .NET String type. On the other hand, if the parameter is set as an OracleDbType.Char
type by setting the OracleDbType
property, the output data is returned as an OracleString
type. If both DbType
and OracleDbType
properties are set before the command execution, the last setting takes affect.
ODP.NET populates InputOutput
, Output
, and ReturnValue
parameters with the Oracle data, through the execution of the following OracleCommand
methods:
-
ExecuteReader
-
ExecuteNonQuery
-
ExecuteScalar
An application should not bind a value for output parameters; it is the responsibility of ODP.NET to create the value object and populate the OracleParameter
Value
property with the object.
When binding by position (default) to a function, ODP.NET expects the return value to be bound first, before any other parameters.
This section describes the following:
See Also:
Command Timeouts
The OracleCommand
CommandTimeout
property limits how long a command is allowed to execute before terminating with an exception. This setting prevents long running commands from consuming excessive resources or from blocking other necessary operations from occurring.
The database server can be interrupted via either TCP/IP urgent data or normal TCP/IP data, called out of band (OOB) or in band data, respectively. Windows-based database servers only support in band breaks, whereas all other (predominantly UNIX-based) database servers can support OOB or in band breaks.
ODP.NET, Managed Driver uses OOB breaks by default with database servers that support it. For certain network topologies, the routers or firewalls involved in the route to the database may have been configured to drop urgent data or in band the data. If the routers or firewalls can not be changed to handle urgent data appropriately, then the ODP.NET, Managed Driver can be configured to utilize in band breaks by setting the .NET configuration parameter Disable_Oob
to on
.
See Also:
settings section in the Oracle Data Provider for .NET, Managed Driver Configuration section for more information.
OracleDbType Enumeration Type
OracleDbType
enumerated values are used to explicitly specify the OracleDbType
value of an OracleParameter
object.
Table 3-15 lists all the OracleDbType
enumeration values with a description of each enumerated value.
Table 3-15 OracleDbType Enumeration Values
Member Name | Description |
---|---|
|
Oracle Collection ( |
|
Oracle |
|
Oracle |
|
Oracle |
|
Oracle |
|
Oracle |
|
|
|
Oracle |
|
Oracle |
|
Oracle |
|
Oracle |
|
8-byte |
|
2-byte |
|
4-byte |
|
8-byte |
|
Oracle |
|
Oracle |
|
Oracle |
|
Oracle |
|
Oracle |
|
Oracle |
|
Oracle Object type |
|
Oracle |
|
Oracle |
|
Oracle |
|
Oracle |
|
Oracle |
|
4-byte |
|
Oracle |
|
Oracle |
|
Oracle |
|
Oracle |
|
Oracle |
Note:
PL/SQL LONG, LONG RAW, RAW,
and VARCHAR
data types can be bound with a size up to 32512 bytes.
Inference of DbType, OracleDbType, and .NET Types
This section explains the inference from the System.Data.DbType
, OracleDbType
, and Value
properties in the OracleParameter
class.
In the OracleParameter
class, DbType
, OracleDbType
, and Value
properties are linked. Specifying the value of any of these properties infers the value of one or more of the other properties.
Inference of DbType from OracleDbType
In the OracleParameter
class, specifying the value of OracleDbType
infers the value of DbType
as shown in Table 3-16.
Table 3-16 Inference of System.Data.DbType from OracleDbType
OracleDbType | System.Data.DbType |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inference of OracleDbType from DbType
In the OracleParameter
class, specifying the value of DbType
infers the value of OracleDbType
as shown in Table 3-17.
Table 3-17 Inference of OracleDbType from DbType
System.Data.DbType | OracleDbType |
---|---|
|
|
|
|
|
|
|
Not Supported |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Not Supported |
|
|
|
|
|
|
|
|
|
Not Supported |
|
Not Supported |
|
Not Supported |
|
Not Supported |
Inference of DbType and OracleDbType from Value
In the OracleParameter
class, Value
is an object type that can be of any .NET Framework data type or ODP.NET type. If the OracleDbType
and DbType
properties of the OracleParameter
class are not specified, the OracleDbType
property is inferred from the type of the Value
property.
Table 3-18 shows the inference of DbType
and OracleDbType
properties from the Value
property when the type of Value
is one of the .NET Framework data types.
Table 3-18 Inference of DbType and OracleDbType from Value (.NET Datatypes)
Value (.NET Datatypes) | System.Data.DbType | OracleDbType |
---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object |
|
Note:
Using other .NET Framework data types as values for the OracleParameter
class without specifying either the DbType
or the OracleDbType
properties raises an exception because inferring DbType
and OracleDbType
properties from other .NET Framework data types is not supported.
Table 3-19 shows the inference of DbType
and OracleDbType
properties from the Value
property when type of Value
is one of Oracle.DataAccess.Types
.
Table 3-19 Inference of DbType and OracleDbType from Value (ODP.NET Types)
Value (Oracle.DataAccess.Types) | System.Data.DbType | OracleDbType |
---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PL/SQL Associative Array Binding
ODP.NET supports PL/SQL Associative Arrays (formerly known as PL/SQL Index-By Tables) binding.
An application can bind an OracleParameter
object, as a PL/SQL Associative Array, to a PL/SQL stored procedure. The following OracleParameter
properties are used for this feature:
-
This property must be set to
OracleCollectionType.PLSQLAssociativeArray
to bind a PL/SQL Associative Array. -
This property is ignored for the fixed-length element types (such as
Int32
).For variable-length element types (such as
Varchar2
), each element in theArrayBindSize
property specifies the size of the corresponding element in theValue
property.For
Output
parameters,InputOutput
parameters, and return values, this property must be set for variable-length variables.If the database server supports up to
32 KB VARCHAR2
, then each ODP.NET array element can store up to32 KB
characters or binary data. If the database server supports up to4 KB VARCHAR2
, then each ODP.NET array element can store up to4 KB
characters or2 KB
binary data. -
This property specifies the execution status of each element in the
OracleParameter.Value
property. -
This property specifies the maximum number of elements to be bound in the PL/SQL Associative Array.
-
This property must be set to an array of values,
null
, or theDBNull.Value
property.
ODP.NET supports binding parameters of PL/SQL Associative Arrays which contain the following data types.
-
BINARY_FLOAT
-
CHAR
-
DATE
-
NCHAR
-
NUMBER
-
NVARCHAR2
-
RAW
-
ROWID
-
UROWID
-
VARCHAR2
Using unsupported data types with associative arrays can cause an ORA-600 error.
Example of PL/SQL Associative Arrays
This example binds three OracleParameter
objects as PL/SQL Associative Arrays: Param1
as an In
parameter, Param2
as an InputOutput
parameter, and Param3
as an Output
parameter.
PL/SQL Package: MYPACK
/* Setup the tables and required PL/SQL: connect scott/tiger@oracle CREATE TABLE T1(COL1 number, COL2 varchar2(20)); CREATE or replace PACKAGE MYPACK AS TYPE AssocArrayVarchar2_t is table of VARCHAR(20) index by BINARY_INTEGER; PROCEDURE TestVarchar2( Param1 IN AssocArrayVarchar2_t, Param2 IN OUT AssocArrayVarchar2_t, Param3 OUT AssocArrayVarchar2_t); END MYPACK; / CREATE or REPLACE package body MYPACK as PROCEDURE TestVarchar2( Param1 IN AssocArrayVarchar2_t, Param2 IN OUT AssocArrayVarchar2_t, Param3 OUT AssocArrayVarchar2_t) IS i integer; BEGIN -- copy a few elements from Param2 to Param1\n Param3(1) := Param2(1); Param3(2) := NULL; Param3(3) := Param2(3); -- copy all elements from Param1 to Param2\n Param2(1) := Param1(1); Param2(2) := Param1(2); Param2(3) := Param1(3); -- insert some values to db\n FOR i IN 1..3 LOOP insert into T1 values(i,Param2(i)); END LOOP; END TestVarchar2; END MYPACK; / */ // C# using System; using System.Data; using Oracle.DataAccess.Client; class AssociativeArraySample { static void Main() { OracleConnection con = new OracleConnection(); con.ConnectionString = "User Id=scott;Password=tiger;Data Source=oracle"; con.Open(); Console.WriteLine("Connected to Oracle" + con.ServerVersion); OracleCommand cmd = new OracleCommand( "begin MyPack.TestVarchar2(:1, :2, :3); end;", con); OracleParameter Param1 = cmd.Parameters.Add("1", OracleDbType.Varchar2); OracleParameter Param2 = cmd.Parameters.Add("2", OracleDbType.Varchar2); OracleParameter Param3 = cmd.Parameters.Add("3", OracleDbType.Varchar2); Param1.Direction = ParameterDirection.Input; Param2.Direction = ParameterDirection.InputOutput; Param3.Direction = ParameterDirection.Output; // Specify that we are binding PL/SQL Associative Array Param1.CollectionType = OracleCollectionType.PLSQLAssociativeArray; Param2.CollectionType = OracleCollectionType.PLSQLAssociativeArray; Param3.CollectionType = OracleCollectionType.PLSQLAssociativeArray; // Setup the values for PL/SQL Associative Array Param1.Value = new string[3] { "First Element", "Second Element ", "Third Element " }; Param2.Value = new string[3] { "First Element", "Second Element ", "Third Element " }; Param3.Value = null; // Specify the maximum number of elements in the PL/SQL Associative Array Param1.Size = 3; Param2.Size = 3; Param3.Size = 3; // Setup the ArrayBindSize for Param1 Param1.ArrayBindSize = new int[3] { 13, 14, 13 }; // Setup the ArrayBindStatus for Param1 Param1.ArrayBindStatus = new OracleParameterStatus[3] { OracleParameterStatus.Success, OracleParameterStatus.Success, OracleParameterStatus.Success}; // Setup the ArrayBindSize for Param2 Param2.ArrayBindSize = new int[3] { 20, 20, 20 }; // Setup the ArrayBindSize for Param3 Param3.ArrayBindSize = new int[3] { 20, 20, 20 }; // execute the cmd cmd.ExecuteNonQuery(); //print out the parameter's values Console.WriteLine("parameter values after executing the PL/SQL block"); for (int i = 0; i < 3; i++) Console.WriteLine("Param2[{0}] = {1} ", i, (cmd.Parameters[1].Value as Array).GetValue(i)); for (int i = 0; i < 3; i++) Console.WriteLine("Param3[{0}] = {1} ", i, (cmd.Parameters[2].Value as Array).GetValue(i)); // Close and Dispose OracleConnection object con.Close(); con.Dispose(); Console.WriteLine("Disconnected"); } }
Array Binding
The array bind feature enables applications to bind arrays of a type using the OracleParameter
class. Using the array bind feature, an application can insert multiple rows into a table in a single database round-trip.
The following example inserts three rows into the Dept
table with a single database round-trip. The OracleCommand
ArrayBindCount
property defines the number of elements of the array to use when executing the statement.
// C# using System; using System.Data; using Oracle.DataAccess.Client; class ArrayBindSample { static void Main() { OracleConnection con = new OracleConnection(); con.ConnectionString = "User Id=scott;Password=tiger;Data Source=oracle;"; con.Open(); Console.WriteLine("Connected successfully"); int[] myArrayDeptNo = new int[3] { 10, 20, 30 }; OracleCommand cmd = new OracleCommand(); // Set the command text on an OracleCommand object cmd.CommandText = "insert into dept(deptno) values (:deptno)"; cmd.Connection = con; // Set the ArrayBindCount to indicate the number of values cmd.ArrayBindCount = 3; // Create a parameter for the array operations OracleParameter prm = new OracleParameter("deptno", OracleDbType.Int32); prm.Direction = ParameterDirection.Input; prm.Value = myArrayDeptNo; // Add the parameter to the parameter collection cmd.Parameters.Add(prm); // Execute the command cmd.ExecuteNonQuery(); Console.WriteLine("Insert Completed Successfully"); // Close and Dispose OracleConnection object con.Close(); con.Dispose(); } }
See Also:
"Value" for more information
OracleParameter Array Bind Properties
The OracleParameter
class provides two properties for granular control when using the array bind feature:
-
The
ArrayBindSize
property is an array of integers specifying the maximum size for each corresponding value in an array. TheArrayBindSize
property is similar to theSize
property of anOracleParameter
object, except theArrayBindSize
property specifies the size for each value in an array.Before the execution, the application must populate the
ArrayBindSize
property; after the execution, ODP.NET populates it.The
ArrayBindSize
property is used only for parameter types that have variable length such asClob
,Blob
, andVarchar2
. The size is represented in bytes for binary data types, and characters for the Unicode string types. The count for string types does not include the terminating character. The size is inferred from the actual size of the value, if it is not explicitly set. For an output parameter, the size of each value is set by ODP.NET. TheArrayBindSize
property is ignored for fixed-length data types.The maximum
ArrayBindSize
size is2 GB
for both character and binary data. -
The
ArrayBindStatus
property is an array ofOracleParameterStatus
values that specify the status of each corresponding value in an array for a parameter. This property is similar to theStatus
property of theOracleParameter
object, except that theArrayBindStatus
property specifies the status for each array value.Before the execution, the application must populate the
ArrayBindStatus
property. After the execution, ODP.NET populates the property. Before the execution, an application using theArrayBindStatus
property can specify aNULL
value for the corresponding element in the array for a parameter. After the execution, ODP.NET populates theArrayBindStatus
property, indicating whether the corresponding element in the array has anull
value, or if data truncation occurred when the value was fetched.
Error Handling for Array Binding
If an error occurs during an array bind execution, it can be difficult to determine which element in the Value
property caused the error. ODP.NET provides a way to determine the row where the error occurred, making it easier to find the element in the row that caused the error.
When an OracleException
object is thrown during an array bind execution, the OracleErrorCollection
object contains one or more OracleError
objects. Each of these OracleError
objects represents an individual error that occurred during the execution, and contains a provider-specific property, ArrayBindIndex
, which indicates the row number at which the error occurred.
The following example demonstrates error handling for array binding:
/* Database Setup connect scott/tiger@oracle drop table depttest; create table depttest(deptno number(2)); */ // C# using System; using System.Data; using Oracle.DataAccess.Client; class ArrayBindExceptionSample { static void Main() { OracleConnection con = new OracleConnection(); con.ConnectionString = "User Id=scott;Password=tiger;Data Source=oracle;"; con.Open(); OracleCommand cmd = new OracleCommand(); // Start a transaction OracleTransaction txn = con.BeginTransaction(IsolationLevel.ReadCommitted); try { int[] myArrayDeptNo = new int[3] { 10, 200000, 30 }; // int[] myArrayDeptNo = new int[3]{ 10,20,30}; // Set the command text on an OracleCommand object cmd.CommandText = "insert into depttest(deptno) values (:deptno)"; cmd.Connection = con; // Set the ArrayBindCount to indicate the number of values cmd.ArrayBindCount = 3; // Create a parameter for the array operations OracleParameter prm = new OracleParameter("deptno", OracleDbType.Int32); prm.Direction = ParameterDirection.Input; prm.Value = myArrayDeptNo; // Add the parameter to the parameter collection cmd.Parameters.Add(prm); // Execute the command cmd.ExecuteNonQuery(); } catch (OracleException e) { Console.WriteLine("OracleException {0} occured", e.Message); if (e.Number == 24381) for (int i = 0; i < e.Errors.Count; i++) Console.WriteLine("Array Bind Error {0} occured at Row Number {1}", e.Errors[i].Message, e.Errors[i].ArrayBindIndex); txn.Commit(); } cmd.Parameters.Clear(); cmd.CommandText = "select count(*) from depttest"; decimal rows = (decimal)cmd.ExecuteScalar(); Console.WriteLine("{0} row have been inserted", rows); con.Close(); con.Dispose(); } }
See Also:
"ArrayBindIndex" for more information
OracleParameterStatus Enumeration Types
Table 3-20 lists OracleParameterStatus
enumeration values.
Table 3-20 OracleParameterStatus Members
Member Names | Description |
---|---|
|
For input parameters, indicates that the input value has been assigned to the column. For output parameters, indicates that the provider assigned an intact value to the parameter. |
|
Indicates that a |
|
Indicates that a |
|
Indicates that truncation has occurred when fetching the data from the column. |
Batch Processing
The OracleDataAdapter
UpdateBatchSize
property enables batch processing when the OracleDataAdapter.Update
method is called. UpdateBatchSize
is a numeric property that indicates how many DataSet rows to update the Oracle database for each round-trip.
This enables the developer to reduce the number of round-trips to the database.
See Also:
Statement Caching
Statement caching eliminates the need to parse each SQL or PL/SQL statement before execution by caching server cursors created during the initial statement execution. Subsequent executions of the same statement can reuse the parsed information from the cursor, and then execute the statement without reparsing, for better performance.
In order to see performance gains from statement caching, Oracle recommends caching only those statements that will be repeatedly executed. Furthermore, SQL or PL/SQL statements should use parameters rather than literal values. Doing so takes full advantage of statement caching, because parsed information from parameterized statements can be reused even if the parameter values change in subsequent executions. However, if the literal values in the statements are different, the parsed information cannot be reused unless the subsequent statements also have the same literal values.
Statement Caching Connection String Attributes
The following connection string attributes control the behavior of the ODP.NET statement caching feature:
-
Statement
Cache
Size
This attribute enables or disables ODP.NET statement caching. By default, this attribute is set to
0
(disabled). If it is set to a value greater than0
, ODP.NET statement caching is enabled and the value specifies the maximum number of statements that can be cached for a connection. Once a connection has cached up to the specified maximum cache size, the least recently used cursor is freed to make room to cache the newly created cursor.If self tuning is enabled, then statement caching is enabled as well. The
Statement Cache Size
is configured automatically in such cases. -
Statement
Cache
Purge
This attribute provides a way for connections to purge all statements that are cached when a connection is closed or placed back into the connection pool. By default, this attribute is set to
false
, which means that cursors are not freed when connections are placed back into the pool.
Enabling Statement Caching through the Registry
To enable statement caching by default for all ODP.NET applications running in a system, without changing the application, set the registry key of HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\ODP.NET\
Assembly_Version
\StatementCacheSize
to a value greater than 0
. This value specifies the number of cursors that are to be cached on the server.
The default value for the system can be overridden at the connection pool level. The Statement
Cache
Size
attribute can be set to a different size than the registry value or it can be turned off. The Statement
Cache
Size
can also be configured through an XML configuration file.
See Also:
Configuring Oracle Data Provider for .NET for more details.Statement Caching Methods and Properties
The following property and method are relevant only when statement caching is enabled:
-
OracleCommand.AddToStatementCache
propertyIf statement caching is enabled, having this property set to
true
(default) adds statements to the cache when they are executed. If statement caching is disabled or if this property is set tofalse
, the executed statement is not cached. -
OracleConnection.PurgeStatementCache
methodThis method purges all the cached statements by closing all open cursors on the database that are associated with the particular connection. Note that statement caching remains enabled after this call.
Connections and Statement Caching
Statement caching is managed separately for each connection. Therefore, executing the same statement on different connections requires parsing once for each connection and caching a separate cursor for each connection.
Pooling and Statement Caching
Pooling and statement caching can be used in conjunction. If connection pooling is enabled and the Statement
Cache
Purge
attribute is set to false
, statements executed on each separate connection are cached throughout the lifetime of the pooled connection.
If the Statement
Cache
Purge
attribute is set to true
, all the cached cursors are freed when the connection is placed back into the pool. When connection pooling is disabled, cursors are cached during the lifetime of the connection, but the cursors are closed when the OracleConnection
object is closed or disposed of.
If schema object metadata is changed, such as dropping a table column, while the .NET app is running, ODP.NET should not use the cached schema information. The cache is now out of date and returns an "ORA-01007 variable not in select list" or similar error. If your app changes schema objects during the .NET app's running lifetime, then disable both statement caching and metadata pooling for ODP.NET commands that use those schema objects to avoid the error.
Self-Tuning
ODP.NET applications can be self-tuned for performance optimization. ODP.NET dynamically monitors application queries during runtime.
Note:
Self-tuning for applications does not take place if the Pooling
connection string attribute is set to false
.
The statement cache size (StatementCacheSize) is tuned automatically by monitoring the statements that are executed by the application. The following sections discuss self-tuning in applications:
Self-Tuning Statement Caching
Statement caching helps improve performance by eliminating the need to re-parse each SQL or PL/SQL statement before execution.
If self-tuning is enabled for an application, then ODP.NET continuously monitors application behavior in order to determine the optimum value for the statement cache size. Any statement cache size value specified in the connection string, configuration file, or registry is ignored.
When the application first initializes, it uses the default value of statement cache size. As the application executes statements, ODP.NET collects statistics that are used to self-tune the value of statement cache size. Self-tuning of statement cache size results in increased performance.
Note:
To take full advantage of statement caching, you should not dynamically generate statements, with different inline values, for every statement execution. Instead, use parameterized commands to minimize the number of unique statements that need to be executed and cached. This is because only one statement needs to be cached for every unique command text, regardless of the parameter values and the number of times that the statement is executed.
The maximum number of statements that can be cached per connection is determined by the MaxStatementCacheSize
configuration attribute. The MaxStatementCacheSize
value can be specified in the Windows registry or XML configuration file.
The MaxStatementCacheSize
setting is useful in limiting the number of cached statements, as well as the number of open cursors. This is because a cached statement equates to a cursor being opened on the server. For this reason, you should not set MaxStatementCacheSize
to a value that is greater than the database OPEN_CURSORS
setting.
The following Windows registry key is used to configure the MaxStatementCacheSize
configuration attribute:
HKLM\Software\Oracle\ODP.NET\version\MaxStatementCacheSize
The MaxStatementCacheSize
key is of type REG_SZ
. It can be set to an integer value between 0 and System.Int32.MaxValue
.
The following example sets the MaxStatementCacheSize
property in an ADO.NET 2.0, or above, configuration file:
<?xml version="1.0" encoding="utf-8" ?> <configuration> <oracle.dataaccess.client> <settings> <add name="MaxStatementCacheSize" value="300"/> </settings> </oracle.dataaccess.client> </configuration>
If self-tuning is disabled for an application, then the value of statement cache size is determined by the settings in the connection string, configuration file, or the registry. If statement cache size is not specified in any of these sources, then the default value of statement cache size is set to 0. To have ODP.NET configured with the same default settings as previous releases of ODP.NET, disable self-tuning and set the StatementCacheSize
value to 10.
See Also:
Enabling or Disabling Self-Tuning for Applications
Self-tuning for ODP.NET applications is enabled by default. An application can enable or disable self-tuning using one of the following methods:
-
Self-Tuning Connection String Attribute
An application can modify the
Self Tuning
connection string attribute to enable or disable self-tuning for a particular connection pool. The default value forSelf Tuning
istrue
. -
Windows Registry
An application can enable or disable self-tuning for a particular version of ODP.NET by modifying the following registry entry:
HKLM\Software\Oracle\ODP.NET\version\SelfTuning
The
SelfTuning
key is of typeREG_SZ
. It can be set to either1
(enabled) or0
(disabled). -
Configuration File
An ODP.NET application can modify the application configuration file (
app.config
) or Web configuration file (web.config
) to enable or disable self-tuning.The following example shows how to enable self-tuning in an ADO.NET 2.0 application configuration file:
<?xml version="1.0" encoding="utf-8" ?> <configuration> <oracle.dataaccess.client> <settings> <add name="SelfTuning" value="1"/> </settings> </oracle.dataaccess.client> </configuration>
Note:
If the optimal statement cache size is known for an application, then you can disable self-tuning and set
StatementCacheSize
to its optimum value in the registry, configuration file, or the application. If self-tuning is disabled andStatementCacheSize
is not set at all, then the default value of 0 is used forStatementCacheSize
.
Tracing Optimization Changes
Applications can trace optimization changes made by self-tuning. All changes to StatementCacheSize
are traced. Errors, if any, are also traced.
The TraceLevel
used for tracing self-tuning is 64
for unmanaged ODP.NET. Managed ODP.NET and ODP.NET Core uses TraceLevel
to 7
.
See Also:
Table 2-3 for details on TraceLevel
values
Data Transmission Performance
ODP.NET data transmission performance can be optimized via the Session Data Unit (SDU) size setting. The SDU is a buffer that Oracle uses to place data before transmitting it across the network. Oracle sends the data in the buffer either when requested or when it is full.
Adjusting the size of the SDU buffers relative to the amount of data to send at any one time can improve performance, network utilization, and memory consumption. When large amounts of data are being transmitted, increasing the SDU size can improve performance and network throughput. SDU size can be adjusted lower or higher to achieve higher throughput for a specific deployment. A larger SDU size allows more data to be sent per buffer, reducing number of database round trips for large amounts of data. To accommodate the larger buffer, more memory consumption occurs.
This buffer size can be set on either the ODP.NET client side or database server side. ODP.NET supports SDU sizes between 256 and 2,097,152 bytes. In ODP.NET, this can be set in the .NET configuration file (.NET Framework), tnsnames.ora
, or sqlnet.ora
.
For managed ODP.NET and ODP.NET Core, if the application does not provide a client side SDU value, then connections will use the database server’s SDU size. If the client side SDU size is set, then connections will compare it against the DB server’s SDU size, and then choose the lower of the two values for the SDU size to use.
Unmanaged ODP.NET SDU setting behavior is the same as the Oracle database client’s.
See Also:
Optimizing Performance in Oracle Database Net Services Administrator's Guide for more SDU details.