Click here to Skip to main content
15,916,462 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
What is C#'s equivalent to VFP's CursorAdapter?
Posted

1 solution

Hi,

I think you want to open a database cursor, aren't you? Then you're search for class:
System.Data.Common.DbDataReader

or if you're searching e.g. for MS SQL Server:
System.Data.SqlClient.SqlDataReader

or OleDb:
System.Data.OleDb.OleDbDataReader

or Odbc:
System.Data.Odbc.OdbcDataReader


king regards
 
Share this answer
 


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900