OdbcDataReader.GetValues(Object[]) Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Bir nesne dizisini geçerli satırın sütun değerleriyle doldurur.
public:
override int GetValues(cli::array <System::Object ^> ^ values);
public:
virtual int GetValues(cli::array <System::Object ^> ^ values);
public override int GetValues (object[] values);
public int GetValues (object[] values);
override this.GetValues : obj[] -> int
abstract member GetValues : obj[] -> int
override this.GetValues : obj[] -> int
Public Overrides Function GetValues (values As Object()) As Integer
Public Function GetValues (values As Object()) As Integer
Parametreler
Döndürülenler
Dizideki örneklerinin Object sayısı.
Uygulamalar
Örnekler
using System;
using System.Data;
using System.Data.Odbc;
class Class1 {
public static void Main() {
using (OdbcConnection connection =
new OdbcConnection("Driver={Microsoft Access Driver (*.mdb)};DBQ=C:\\Northwind.mdb")) {
object[] meta = new object[10];
bool read;
OdbcCommand command = new OdbcCommand("select * from Shippers", connection);
connection.Open();
OdbcDataReader reader = command.ExecuteReader();
if (reader.Read() == true) {
do {
int NumberOfColums = reader.GetValues(meta);
for (int i = 0; i < NumberOfColums; i++)
Console.Write("{0} ", meta[i].ToString());
Console.WriteLine();
read = reader.Read();
} while (read == true);
}
reader.Close();
}
}
}
Imports System.Data
Imports System.Data.Odbc
Module Module1
Public Sub Main()
Using connection As New OdbcConnection("Driver={Microsoft Access Driver (*.mdb)};DBQ=C:\\Northwind.mdb")
Dim command As New OdbcCommand("select * from Shippers", connection)
connection.Open()
Dim reader As OdbcDataReader = command.ExecuteReader()
Dim NumberOfColums As Integer
Dim meta As Object() = New Object(10) {}
Dim read As Boolean
If reader.Read() = True Then
Do
NumberOfColums = reader.GetValues(meta)
For i As Integer = 0 To NumberOfColums - 1
Console.Write("{0} ", meta(i).ToString())
Next
Console.WriteLine()
read = reader.Read()
Loop While read = True
End If
reader.Close()
End Using
End Sub
End Module
Açıklamalar
Çoğu uygulama için yöntemi, GetValues her sütunu ayrı ayrı almak yerine tüm sütunları almak için verimli bir yöntem sağlar.
Sonuçta elde edilen satırda yer alan sütun sayısından daha az sayıda sütun içeren bir Object dizi geçirebilirsiniz. Diziye yalnızca dizinin tuttuğu veri Object miktarı kopyalanır. Ayrıca, uzunluğu sonuçta elde edilen satırda bulunan sütun sayısından daha fazla olan bir Object dizi geçirebilirsiniz.
Bu yöntem null veritabanı sütunları için döndürür DBNull .