How to sync local and web database?

Ask a Question related to ASP, Design and Development.

  1. #1

    Default How to sync local and web database?

    I am wondering if their is a strategy or tool for syncing a local
    database with a web-based database? Specifically I have an application
    where orders are entered via a web form and the data emailed to my
    client who processes the orders. I extract the order information and
    update a local "order tracking" database. There are several order
    processing steps. I want to update a web database to reflect the status
    of the order as it flows through the local tracking application. I will
    send an email to the "orderer" at the major steps, but my client wants
    to have a web-based report shows the status of all orders for a company
    that has pending orders. In other words a company will enter multiple
    orders and will be able to track the status of the orders by signing on
    to the web site. This status report gets its data from the
    web-database.....which I must update from the local tracking database.
    A pretty long winded explation which I hope mades sense. Has anyone
    found a solution to this problem? Any reference or tools you can
    suggest?

    I am using MS Access mdb as the databases. Email client is MS Outlook.
    Web is based on ASP.
    Thanks for your responses, Jack



    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Jack Crawford Guest

  2. Similar Questions and Discussions

    1. Re-sync out of sync live streams
      Hi Guys, I'm testing an application I've created. It's basically a 2-way A/V chat, with a text chat application on there as well. Each user...
    2. Need to download data to local access database
      Have a web app (ASP classic) that saves data to an Access database on the web host. Need to come up with some sort of ASP admin tool that will...
    3. Can local ASP page access remote database?
      Can I have a local (using PWS on Win98) ASP page access a database over the Internet? I have an MS-Access database on a Web site that is updated...
    4. Sync AppleWorks database to Palm
      Is there a third party conduit solution to sync an AppleWorks 6.x database file to the Palm? Documents to Go seems to require 2MB of Palm memory...
    5. Local Policy Database
      I am getting an error after changing the Administrator account name, Unable to save Local Policy Database. The option is there, why can I not...
  3. #2

    Default Re: How to sync local and web database?

    Is the local tracking "application" something you can adjust?

    For example, if the application were written in VB, I'd have an "update the
    website" button that would call
    [url]http://theserver/updatedatabase.asp?ID=XXX&Status=XXX[/url]

    and obviously updatedatabase.asp would Update the website's database.

    Just one approach.




    "Jack Crawford" <jack@drofware.com> wrote in message
    news:u5LavPZmDHA.2528@TK2MSFTNGP10.phx.gbl...
    > I am wondering if their is a strategy or tool for syncing a local
    > database with a web-based database? Specifically I have an application
    > where orders are entered via a web form and the data emailed to my
    > client who processes the orders. I extract the order information and
    > update a local "order tracking" database. There are several order
    > processing steps. I want to update a web database to reflect the status
    > of the order as it flows through the local tracking application. I will
    > send an email to the "orderer" at the major steps, but my client wants
    > to have a web-based report shows the status of all orders for a company
    > that has pending orders. In other words a company will enter multiple
    > orders and will be able to track the status of the orders by signing on
    > to the web site. This status report gets its data from the
    > web-database.....which I must update from the local tracking database.
    > A pretty long winded explation which I hope mades sense. Has anyone
    > found a solution to this problem? Any reference or tools you can
    > suggest?
    >
    > I am using MS Access mdb as the databases. Email client is MS Outlook.
    > Web is based on ASP.
    > Thanks for your responses, Jack
    >
    >
    >
    > *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    > Don't just participate in USENET...get rewarded for it!

    Tom B Guest

  4. #3

    Default Re: How to sync local and web database?


    Tom, I have written the local tracking application in VBA as part of a
    MS Access database, so I can "adjust it".

    I was thinking about the approach you suggest. The question would be
    how the updatedatabase.asp would function. Haven't given it enough
    thought, but seems that most request would fall into a limited number of
    "operations"?
    1)add a record to a table
    2)edit a field with/in a record
    3)delete a record
    4)other?

    Seems like the asp code could have several possible forms:
    a)Could be simply as sql executer? Send a sql string to be executed by
    the asp code?
    b) Could be a "transaction processor". Parameters would be the "Tran
    Type" and the table and the datas.

    Any comments and/or suggestions? Any articles or perhaps someone has
    written a tool to do this? I will be working on the project over the
    next few weeks, so any input would be appreciated.
    Thanks, Jack


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Jack Crawford Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139