Accessing SqlServer from a machine without SqlServer

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

Guest

Is it possible to access a SqlServer installed machine from a machine which does not have SqlServer installed (from within a .NET application)?
Cheers,
James Chang.
 
Yes. The .NET Framework comes with a SQL Server provider. Utilizing
classes in the System.Data and System.Data.SqlClient namespaces, you could
build a client application that accesses a SQL Server database on a remote
system.

See the link below.

http://samples.gotdotnet.com/QuickS...quickstart/howto/doc/adoplus/sqldtreader.aspx

Hope this helps.
--
Jeffrey Wynn
(e-mail address removed)

jytchang said:
Is it possible to access a SqlServer installed machine from a machine
which does not have SqlServer installed (from within a .NET application)?
 
Back
Top