Mc Brain
Nov 10th, 2000, 07:52 AM
How do you do to connect to a SQL Server through Internet. I mean, I'm connecting to the server through ADO with some code, part of which is posted beneath:
Set mCN = New ADODB.Connection
With mCN
.ConnectionString = "driver={SQL Server};uid=sa;server=cedi_acad_adm;database=Books"
.CursorLocation = adUseClient
.Open
End With
However, I'm wondering whether there's a way to connect to it through Internet. What I want to do is to be able to perfom queries from home also, not only at work.
Set mCN = New ADODB.Connection
With mCN
.ConnectionString = "driver={SQL Server};uid=sa;server=cedi_acad_adm;database=Books"
.CursorLocation = adUseClient
.Open
End With
However, I'm wondering whether there's a way to connect to it through Internet. What I want to do is to be able to perfom queries from home also, not only at work.