Page 1 of 1

Fill DataSet Async?

Posted: Thu 10 Jul 2008 13:48
by Zero-G.
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

Posted: Mon 14 Jul 2008 13:09
by AndreyR
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.

Posted: Mon 14 Jul 2008 13:23
by Zero-G.
Hey

Thanks for your tip.

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

THX

Posted: Wed 16 Jul 2008 13:39
by AndreyR
Hello, Zero-G.

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

Regards, Andrey.