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:

Code:
  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.