| Oracle® Data Provider for .NET Developer's Guide Release 9.2.0.4 Part Number B10961-01 |
|
Oracle.DataAccess.Client Namespace, 8 of 30
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.DataAccess.dll
OracleErrorCollection members are listed in the following tables:
OracleErrorCollection static methods are listed in Table 4-55.
| Methods | Description |
|---|---|
|
|
Inherited from |
OracleErrorCollection properties are listed in Table 4-56.
| Name | Description |
|---|---|
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
OracleErrorCollection public methods are listed in Table 4-57.
| Public Method | Description |
|---|---|
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
OracleErrorCollection static methods are listed in Table 4-58.
| Methods | Description |
|---|---|
|
|
Inherited from |
OracleErrorCollection properties are listed in Table 4-59.
| Name | Description |
|---|---|
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
OracleErrorCollection public methods are listed in Table 4-60.
| Public Method | Description |
|---|---|
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
Inherited from |
|
|
![]() Copyright © 2002, 2003 Oracle Corporation. All Rights Reserved. |
|