C
Chuck Bowling
Ok, I'm very new to ADO.NET and databases in general.
There are a couple of things I'm not clear on. First, I'm not sure exactly
what an SQL Server is. By that I mean what's the difference between an SQL
server and an Access database? Does the server only serve SQL to the Access
datasource or is it an application capable of creating and managing
datasources?
Another thing; is the Northwind data a database or a datasource - or are
they the same thing?
Thirdly, in this connection string:
SqlConnection nwindConn =
new SqlConnection("Data Source=localhost; Integrated Security=SSPI;" +
"Initial Catalog=northwind");
is Initial Catalog a database in the applications starting directory or is
it kept somewhere else?
There are a couple of things I'm not clear on. First, I'm not sure exactly
what an SQL Server is. By that I mean what's the difference between an SQL
server and an Access database? Does the server only serve SQL to the Access
datasource or is it an application capable of creating and managing
datasources?
Another thing; is the Northwind data a database or a datasource - or are
they the same thing?
Thirdly, in this connection string:
SqlConnection nwindConn =
new SqlConnection("Data Source=localhost; Integrated Security=SSPI;" +
"Initial Catalog=northwind");
is Initial Catalog a database in the applications starting directory or is
it kept somewhere else?