Viewing 3 posts - 1 through 4 (of 4 total)
I don't know the answer. If you install the client tools (Query Analyzer, etc..) on another computer, and try connecting using the various IP addresses it should be easy enough...
December 1, 2005 at 2:29 pm
#607201
The datasource is the name of the database (such as Northwind)
The URL is the IP address of the server (or 127.0.0.1 if the web server is on the same machine...
December 1, 2005 at 11:36 am
#607154
In ASP.NET, you can try this code:
string MyConnectionString =
string.Format("Provider=SQLOLEDB; Data Source={0}; " +
" Initial Catalog={1};User ID={2}; Password={3}",
URL, DBName, UserID, Password);
OleDbConnection _connection =...
December 1, 2005 at 4:27 am
#606991