| Oracle Data Provider for .NET Developer's Guide Release 9.2.0.2 Part Number A96160-01 |
|
Oracle.DataAccess.Client Namespace, 8 of 26
An OracleErrorCollection class represents a collection of all errors that are thrown by the Oracle Data Provider for .NET.
Object
ArrayList
OracleErrorCollection
// C#
public sealed class OracleErrorCollection : ArrayList
All public static methods are thread-safe, although instance methods do not guarantee thread safety.
A simple ArrayList that holds a list of OracleErrors.
// C#
// The following example demonstrates how to access an individual OracleError
// from an OracleException
...
public void DisplayErrors(OracleException myException)
{
for (int i=0; i < myException.Errors.Count; i++;)
{
Console.WriteLine("Index #" + i + "\n" +
"Error: " + myException.Errors[i].ToString() + "\n");
}
}
...
Namespace: Oracle.DataAccess.Client
Assembly: Oracle.DataAccesss.dll
OracleErrorCollection members are listed in the following tables:
OracleErrorCollection static methods are listed in Table 4-57.
| Methods | Description |
|---|---|
|
|
Inherited from |
OracleErrorCollection properties are listed in Table 4-58.
| Name | Description |
|---|---|
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
OracleErrorCollection public methods are listed in Table 4-59.
| Public Method | Description |
|---|---|
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
OracleErrorCollection static methods are listed in Table 4-60.
| Methods | Description |
|---|---|
|
|
Inherited from |
OracleErrorCollection properties are listed in Table 4-61.
| Name | Description |
|---|---|
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
OracleErrorCollection public methods are listed in Table 4-62.
| Public Method | Description |
|---|---|
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
![]() Copyright © 2002 Oracle Corporation. All Rights Reserved. |
|