'Acces to MySQL automatic data transfer
I have to pass data from Access database to a MySQL database attached to HeidiSQL automatically every minutes. To do that i put the data into excel files format .xls with vba code every minutes.
After that i get the data from .xls files with a php script to modify data and put them into MySQL DB.
I already have the script that modify and put the data in MySQL from xls.
The problem is how to call the php script every minutes and wait until it finished before doing anything else ?
I'm using windows OS.
Solution 1:[1]
You can schedule long-running tasks to run from a command line script. You may try using the
"* * * * * [command] "
making the cronjob definition to run the script you have prepared to pass the data.
Solution 2:[2]
If you using windows you can use task scheduler, this article might be useful
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Vaidehi Jamankar |
Solution 2 |