MySqlDataTable with FetchAll

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for MySQL
Post Reply
Massimo
Posts: 13
Joined: Mon 28 May 2007 15:18

MySqlDataTable with FetchAll

Post by Massimo » Wed 27 Jun 2007 14:56

I have using MySqlDataTable with FetchAll = false and DataGridView.datasource, how can i positioning to the
record in the DataGridView if it still is not loaded?

es.

A MySqlDataTable whit 10000 records;
DataGridView view the first row;
How i can go to the row 5000?

Thanks,
Massimo

Alexey
Posts: 2756
Joined: Mon 13 Mar 2006 07:43

Post by Alexey » Wed 27 Jun 2007 15:11

Try

Code: Select all

MySqlDataTable.StartRecord = 5000;

Post Reply