Can Sql Server 7 be used with ADO.Net?

  • Thread starter Thread starter Chris Pearce
  • Start date Start date
C

Chris Pearce

Does ADO.Net work with SQL Server 7 or is it only
compatible with SQL Server 2000?

Thanks in advance


Chris Pearce
 
Hi Chris,

From help files:
In ADO.NET you create and manage connections using connection objects:

a.. SqlConnection - an object that manages a connection to a SQL Server
version 7.0 or later. It is optimized for use with SQL Server 7.0 or later
by (among other things) bypassing the OLE DB layer.
 
Back
Top