|
-
Nov 25th, 2005, 05:37 AM
#1
Thread Starter
Addicted Member
Help: Best way to access a database remotely
I was useing data enviroments to access a database on the work LAN.
Now the rules have changed, the database is gogin to be situated off premises and not on the lan, therefore i need to have access to an access database over the net.
Any idea on how to go about this and the best meathod. The databse will be being changed often, i need to keep the main off site database updated by the users in the work place useing my program.
-
Nov 25th, 2005, 06:02 AM
#2
Re: Help: Best way to access a database remotely
 Originally Posted by fgp123
I was useing data enviroments to access a database on the work LAN.
Now the rules have changed, the database is gogin to be situated off premises and not on the lan, therefore i need to have access to an access database over the net.
Any idea on how to go about this and the best meathod. The databse will be being changed often, i need to keep the main off site database updated by the users in the work place useing my program.
I use ADO to connect to my remote databases. Take a look at the two ADO examples in my signature.
Regards,
Mark
Please remember to rate posts! Rate any post you find helpful. Use the link to the left - "Rate this Post". Please use [highlight='vb'] your code goes in here [/highlight] tags when posting code. When a question you asked has been resolved, please go to the top of the original post and click "Thread Tools" then select "Mark Thread Resolved."
-
Nov 25th, 2005, 06:26 AM
#3
Thread Starter
Addicted Member
Re: Help: Best way to access a database remotely
 Originally Posted by Mark Gambo
I use ADO to connect to my remote databases. Take a look at the two ADO examples in my signature.
You can use ADO to access a Access Database file over the net?
-
Nov 25th, 2005, 08:16 AM
#4
Re: Help: Best way to access a database remotely
Yes you can, however the data will take longer to arrive, and you may get timeout errors.
To avoid this kind of problem (depending on which DBMS you are using + licencing costs), you could have a local copy which is replicated to/from the remote DB.
Here is an example of working with an Access database over the web: http://www.vbforums.com/showthread.p...96#post2223896
-
Nov 25th, 2005, 08:21 AM
#5
Re: Help: Best way to access a database remotely
 Originally Posted by fgp123
You can use ADO to access a Access Database file over the net?
I have never used Access 'across the wire' but after a quick Google Search it apparently is possible:
- use an XML Web Service via SOAP Toolkit or ASP.NET
- upgrade to SQL Server and use an IP connection string
- use an ADO URL with a remote ASP web page
- use a MS Remote or RDS connection string
I would recommend upgrading to MySQL especially if you intend on having multiple users.
Regards,
Mark
Please remember to rate posts! Rate any post you find helpful. Use the link to the left - "Rate this Post". Please use [highlight='vb'] your code goes in here [/highlight] tags when posting code. When a question you asked has been resolved, please go to the top of the original post and click "Thread Tools" then select "Mark Thread Resolved."
-
Nov 25th, 2005, 08:36 AM
#6
Hyperactive Member
Re: Help: Best way to access a database remotely
 Originally Posted by Mark Gambo
I would recommend upgrading to MySQL especially if you intend on having multiple users.
That or SQL Server 2005 Express. Its free now.
-
Nov 25th, 2005, 09:12 AM
#7
Thread Starter
Addicted Member
Re: Help: Best way to access a database remotely
 Originally Posted by si_the_geek
Yes you can, however the data will take longer to arrive, and you may get timeout errors.
To avoid this kind of problem (depending on which DBMS you are using + licencing costs), you could have a local copy which is replicated to/from the remote DB.
Here is an example of working with an Access database over the web: http://www.vbforums.com/showthread.p...96#post2223896
thank you for the information guys, im not 100% on various SQL products and licences. ive just been working on your basic Acess databases so far.
What would i need to get in order to use this over the net, is there a inital cost and is there a continueing service charge for this stuff ??
-
Nov 25th, 2005, 10:22 AM
#8
Re: Help: Best way to access a database remotely
MySQL is free forever afaik. SQL Server 2005 Express sounds free but i dunno for how long. SQL Server Standard is costly and you have to buy licenses per machine or per user.
Since you entered the world of doing-really-cool-things-with-databases, I would dump access in the trash and get on board with a regular RDBMS like MySQL.
Nobody knows what software they want until after you've delivered what they originally asked for.
Don't solve problems which don't exist.
"If I had eight hours to cut down a tree, I'd spend six hours sharpening my axe." --- Abraham Lincoln (1809-1865)
2 idiots don't make a genius.
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
|