sql server database connection

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

H

I'm just about to start programming in VB.NET with sql server databases. I've ordered the standard version of VB.NET. Does this contain objects to allow database connection (ADO), or will I need to get ADO.Net

Thanks
 
ADO.NET is part of the Dotnet Framework, so it can be used by any version of
VB.NET, or any other tool that writes programs against the Framework. ADO,
the VB6 way of connecting to databases, can also be used by any version of
VB.NET by using the Framework's Interop Services.

-Roger

Alan said:
Hi

I'm just about to start programming in VB.NET with sql server databases.
I've ordered the standard version of VB.NET. Does this contain objects to
allow database connection (ADO), or will I need to get ADO.Net.
 
You can use either ADO or ADO.NET but if you use ADO, you'll need com
interop and ADO.NET is sooooooooo much cooler, I'd forget ADO exists. The
onlyl catch with Standard is that you can't use the visual tools to connect
to SQL Server other than MSDE, so designer support isn't there. However,
you can still connect to SQL Server through code and you can connect to MSDE
with the IDE.

HTH,

Bill
Alan said:
Hi

I'm just about to start programming in VB.NET with sql server databases.
I've ordered the standard version of VB.NET. Does this contain objects to
allow database connection (ADO), or will I need to get ADO.Net.
 
Back
Top