Querying with the DataReader
The CData ADO.NET Provider for Tally implements two ADO.NET interfaces you can use to retrieve data from Tally: TallyDataAdapter and TallyDataReader objects. Whereas TallyDataAdapter objects retrieve a single result set of all the data that matches a query, TallyDataReader objects fetch data in subset increments as needed.
Using the TallyDataReader
The TallyDataReader retrieves data faster than the TallyDataAdapter because it can retrieve data in pages. As you read data from the TallyDataReader, it periodically requests the next page of results from the data source, if required. This causes results to be returned at a faster rate. The following example selects all the columns from the Company table:
C#
string connectionString = "Url='http://localhost:9000'"; using (TallyConnection connection = new TallyConnection(connectionString)) { TallyCommand cmd = new TallyCommand("SELECT * FROM Company", connection); TallyDataReader rdr = cmd.ExecuteReader(); while (rdr.Read()) { Console.WriteLine(String.Format("\t{0} --> \t\t{1}", rdr["Name"], rdr["Address"])); } }
VB.NET
Dim connectionString As String = "Url='http://localhost:9000'" Using connection As New TallyConnection(connectionString) Dim cmd As New TallyCommand("SELECT * FROM Company", connection) Dim rdr As TallyDataReader = cmd.ExecuteReader() While rdr.Read() Console.WriteLine([String].Format(vbTab & "{0} --> " & vbTab & vbTab & "{1}", rdr("Name"), rdr("Address"))) End While End Using