Hi,
first of all I want to point you to other forums where you find more experts:
a) http://asp.net also has a lot of forums covering ASP.Net.
b) There are Visual Basic and Visual Basic Express forums on MSDN:
- http://social.msdn.microsoft.com/Forums/en-US/vbgeneral/threads (VB General)
- http://social.msdn.microsoft.com/Forums/en-US/Vsexpressvb/threads (VB Express)
In general, I would use the ADO.Net Framework for such access. ADO.Net offers the classes OleDBConnection / OleDBCommand / ... which work exactly as all these database connection classes so you can normaly copy code accessing other databases and just
replace the used namespace and the used classes (e.g. replace the Sql to OleDb).
ADO.Net also offers much more e.g. the entity framework where you can let Visual Studio generate you a full set of classes to access the database or create, delete or modify entities and so on ...
I hope this helped a little.
With kind regards,
Konrad