Odczytanie z ADODB.Recordset

Settembre 14th, 2007

Description: Odczytanie z ADODB.Recordset

Link: http://www.codekeep.net/snippets/c881a01f-3f6f-400d-87f2-ebe92e5118c7.aspx

System.Collections.IEnumerator pola = Attr.Fields.GetEnumerator();
			int ilosc = Attr.Fields.Count;
			string Komunikat = "";
			for (int i = 0; i < 10; i++)
			{
				pola.MoveNext();
				Komunikat += ":" + ((ADODB.Field)pola.Current).Value.ToString();
			}

  • .NET
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Trackback URI | Comments RSS

Leave a Reply

You must be logged in to post a comment.