Has anybody got any input on the potential implications of using data bound controls in vb.net for a production application.
It's well known that they were to be avoided for anything other than prototyping in VB6 but given that the ADO.NET model is now based around disconnected datasets surely the main problem of poorly managed connections is no longer a consideration.
I'm looking for the absolute fastest performance from my application. I used to achieve this in VB6 through a firehose cursor and populating my controls through code. I know that a similar route is still possible using a datareader but I'm keen to go with the recommended disconnected route for client/server apps.
Surely binding controls to an ADO.NET datatable has no down sides. After all, you're only binding to an in-memory database.
Someone please tell me if I'm wrong and why before I start to venture into previously avoided coding.
Thanks a lot
It's well known that they were to be avoided for anything other than prototyping in VB6 but given that the ADO.NET model is now based around disconnected datasets surely the main problem of poorly managed connections is no longer a consideration.
I'm looking for the absolute fastest performance from my application. I used to achieve this in VB6 through a firehose cursor and populating my controls through code. I know that a similar route is still possible using a datareader but I'm keen to go with the recommended disconnected route for client/server apps.
Surely binding controls to an ADO.NET datatable has no down sides. After all, you're only binding to an in-memory database.
Someone please tell me if I'm wrong and why before I start to venture into previously avoided coding.
Thanks a lot