Results 1 to 8 of 8

Thread: Help: Best way to access a database remotely

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Apr 2005
    Posts
    129

    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.

  2. #2
    Giants World Champs!!!! Mark Gambo's Avatar
    Join Date
    Sep 2003
    Location
    Colorado
    Posts
    2,965

    Re: Help: Best way to access a database remotely

    Quote 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."


  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Apr 2005
    Posts
    129

    Re: Help: Best way to access a database remotely

    Quote 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?

  4. #4
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,974

    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

  5. #5
    Giants World Champs!!!! Mark Gambo's Avatar
    Join Date
    Sep 2003
    Location
    Colorado
    Posts
    2,965

    Re: Help: Best way to access a database remotely

    Quote 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."


  6. #6
    Hyperactive Member umilmi81's Avatar
    Join Date
    Sep 2005
    Location
    Sterling Heights, Mi.
    Posts
    335

    Re: Help: Best way to access a database remotely

    Quote 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.

  7. #7

    Thread Starter
    Addicted Member
    Join Date
    Apr 2005
    Posts
    129

    Re: Help: Best way to access a database remotely

    Quote 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 ??

  8. #8
    PowerPoster Dave Sell's Avatar
    Join Date
    Mar 2004
    Location
    /dev/null
    Posts
    2,961

    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
  •  



Click Here to Expand Forum to Full Width