I am new to databases, and I am looking for some help. We have a custom app that was written that keeps its data in a SQL Server database. We also have a POS system which is based upon QuickBooks Point Of Sale. We are purchasing a product called QODBC, which gives us an ODBS compliant interface to QBPOS.
The SQL Server database has a table called customerinfo and has 15 columns of information we are interested in out of 70 total.
They are:
id, txtfname, txtlname, txtemployer, txtphone, email, txtaddress, txtcity, txtstate, txtzip, IDENTIFICATIONType, IDENTIFICATIONumber, IDState, IDENTIFICATIONExpiry & dtpBirth.
These columns need to be imported into the ODBC-accessable QBPOS, which has columns that are named differently, with QB preceeding all the above names (example the SQL Server column is id so the QBPOS column is QBid). What
we would like to do is import on a regular schedule (say every minute or so) the data that we need into QBPOS. First, other than the every minute or so import schedule, is it possible to do it via an icon we could just put on the desktop and only do it when we need to? Also, would we be able to just update changed data from the SQL Server database for existing customers?
I thank you all in advance for any help you can offer!!!