Bagikan melalui


OleDbErrorCollection.Item[Int32] Properti

Definisi

Mendapatkan kesalahan pada indeks yang ditentukan.

public:
 property System::Data::OleDb::OleDbError ^ default[int] { System::Data::OleDb::OleDbError ^ get(int index); };
public System.Data.OleDb.OleDbError this[int index] { get; }
member this.Item(int) : System.Data.OleDb.OleDbError
Default Public ReadOnly Property Item(index As Integer) As OleDbError

Parameter

index
Int32

Indeks berbasis nol dari kesalahan yang akan diambil.

Nilai Properti

Yang OleDbError berisi kesalahan pada indeks yang ditentukan.

Keterangan

Contoh berikut menampilkan masing-masing OleDbError dalam OleDbErrorCollection koleksi.

public void DisplayOleDbErrorCollection(OleDbException myException)   
  {  
     for (int i=0; i < myException.Errors.Count; i++)  
     {  
        MessageBox.Show("Index #" + i + "\n" +  
               "Message: " + myException.Errors[i].Message + "\n" +  
               "Native: " + myException.Errors[i].NativeError.ToString() + "\n" +  
               "Source: " + myException.Errors[i].Source + "\n" +  
               "SQL: " + myException.Errors[i].SQLState + "\n");  
     }  
  }  

Berlaku untuk

Lihat juga