|
-
Sep 22nd, 2000, 02:23 PM
#1
Thread Starter
Addicted Member
Supposed I have an Access or SQLServer DB with a known IP address on internet, Can I link DIRECTLY my VB or Access desktop program to that database? How? Thx for any idea.
-
Sep 22nd, 2000, 02:40 PM
#2
Addicted Member
SQL = Yes (just use the IP as the location)
Access = No (you cannot conect to an access DB over the net)
-
Sep 22nd, 2000, 03:05 PM
#3
Thread Starter
Addicted Member
Thank for replying.
I just can't find info about this subject. Could you tell me where I could find more info.?
Can I still use ADO to access a SQLServer through internet? How about speed and security?
Thanks alot
-
Sep 22nd, 2000, 03:16 PM
#4
Addicted Member
yes you can still access SQL Server thru ADO (since it's accessing it over the net anyways, even thru the DSN) also Security, that depends on how you have SQL Server setup, speed, that also depends on how you have SQL Server setup, but in general, should be pretty secure (using a password) and speed should be very good (compared to access, and others)
I think what you want to look for is setting up a DNS-Less connection, if you cant or dont know how to register a DSN for that SQL on the machine the ADO connection is running from.
-
Sep 22nd, 2000, 03:59 PM
#5
Thread Starter
Addicted Member
here is my connection syntax for ADO
myConnection="Provider=sqloledb; Data Source=server;" & _
"Initial Catalog=pubs; User Id=sa; Password=;"
where to specify that IP address?
Also, if using DSN, for seting up DSN on client machine, I need to specify the server of the DB. Since DB is located on internet, how to specify the server and the DB?
You know, I am talking about link to a DB through internet, not a local network.
thx
-
Sep 25th, 2000, 10:18 AM
#6
Thread Starter
Addicted Member
kb244, you are right. I have found the right answer from MSDN
Thx.
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
|