how to connect to a remote database using an ado? what are the codes? someone help me please.
how? please tell me
Collapse
X
-
Hi there,Originally posted by mabzkiehow to connect to a remote database using an ado? what are the codes? someone help me please.
Kindly refer to below, change your connectiong string as below, hope it helps. Good luck & Take care.
Code:oConn.Open "Provider=MS Remote;" & _ "Remote Server=http://myServerName;" & _ "Remote Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=c:\somepath\mydb.mdb", _ "admin", ""
Comment