Fill DataSet Async?

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for MySQL
Post Reply
Zero-G.
Posts: 398
Joined: Sat 09 Dec 2006 12:20

Fill DataSet Async?

Post by Zero-G. » Thu 10 Jul 2008 13:48

Hey

I use your controls v4.7.3 and VB.NET 2008

In my project I use DataAdapters with DataSets. - Is it anyhow possible to fill the DataSet in an Async way?
If yes, please give me feedback

THX

AndreyR
Devart Team
Posts: 2919
Joined: Mon 07 Jul 2008 13:16

Post by AndreyR » Mon 14 Jul 2008 13:09

Hello, Zero-G.

You can't use DataAdapters with DataSets asynchronously.
But you can use MySqlDataTable component, which offers you a pair of BeginFill and EndFil methods for asynchronous fill.

Regards, Andrey.

Zero-G.
Posts: 398
Joined: Sat 09 Dec 2006 12:20

Post by Zero-G. » Mon 14 Jul 2008 13:23

Hey

Thanks for your tip.

Can you please explain in a few words, what is the difference of DataAdapter & DataTable?

THX

AndreyR
Devart Team
Posts: 2919
Joined: Mon 07 Jul 2008 13:16

Post by AndreyR » Wed 16 Jul 2008 13:39

Hello, Zero-G.

The MySqlDataTable component encapsulates the DataTable and DataAdapter components.
It has also some additional features, like data fetch control.

Regards, Andrey.

Post Reply