|
-
Sep 12th, 2006, 04:30 AM
#1
Thread Starter
Member
Access database via internet
Using VB6, can anyone advise how to add data to tables in an access database via the internet. I can use appi's to check connections and ftp text files etc. I can connect to the database on the local machine :-
MyApp = "\test.mdb;"
myPath = App.Path
Password = "Uid=; Password = éøòðçìáú;"
strMode = "Mode=ReadWrite;Persist Security Info=False;"
strConnect = "Driver={Microsoft Access Driver (*.mdb)};Dbq=" _
& myPath & MyApp & strMode & Password
Set cnn1 = New ADODB.Connection
'connect to database
cnn1.Open strConnect
but I am puzzled how to connect via internet.
Can anyone shed some light?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|