Home
Manage Your Code
Snippet: Odczytanie z ADODB.Recordset (C#)
Title: Odczytanie z ADODB.Recordset Language: C#
Description: Odczytanie z ADODB.Recordset Views: 164
Author: Piotr Grys Date Added: 9/14/2007
Copy Code  
1System.Collections.IEnumerator pola = Attr.Fields.GetEnumerator();
2			int ilosc = Attr.Fields.Count;
3			string Komunikat = "";
4			for (int i = 0; i < 10; i++)
5			{
6				pola.MoveNext();
7				Komunikat += ":" + ((ADODB.Field)pola.Current).Value.ToString();
8			}