MySQL Forums
Forum List  »  PHP

Re: Automating LOAD DATA INFILE with data collected regularly on an other system (Windows)
Posted by: Peter Brawley
Date: October 03, 2015 04:07PM

> The Access application validates the data and then adds the records in the batch
> to the remote MySQL file via ODBC. In this case ODBC is the bottleneck.

If by "to the remote MySQL file" you mean "to the remote MySQL table", the data doesn't need to be imported into MySQL via Load Data--it's already in MySQL, and your problem is just to pass multiple MySQL data rows from one server to another. That can be as simple as connecting to the remote server with PHP, sucking up the desired rows, then connecting to the local server and inserting them.

Options: ReplyQuote




Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.