Hi,
Our website is hosted by another company so my database resides on their server. I would like to be able to update the database on my server when updates are sent from the web. Is there a way to do an auto FTP in code?
Well, if you are using SQL Server, then you can set up a trigger that can do that... I have heard that Access has a "pseudo-trigger" that you could probably set up to do such a thing --
The "best" way that I have found to do this is to set up intranet interfaces to UPDATE, DELETE, INSERT, etc... new data to the database, and then, simulateously, do the same UPDATE, DELETE, INSERT on the web version of the database -- running the exact same procedures on both databases at the same time -- it will ensure that the databases stay in sync.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.