MySQL automated batch import
- FlowHeater-Team
- Topic Author
- Offline
- Admin
Less
More
11 years 9 months ago #2267
by FlowHeater-Team
Best wishes
Robert Stark
Did this answer your question? We would be grateful if you provide a brief comment as feedback. It may also help others who may have encountered a similar problem.
MySQL automated batch import was created by FlowHeater-Team
I am testing your great program. I have no problem manually importing data into MySql.
when I try to automate it at the command line I cannot make it work.
my Syntax is
@echo off
C:\Program Files (x86)\FlowHeater V2\BIN\FHBatch.exe C:\Program Files (x86)\FlowHeater V2\BIN\EuroSimm.fhd
FHBatch.exe exists in BIN
EuroSimm.fhd works manually and it is in BIN
I have made it work once but it does not work on demand the file has more than 50 records in it.
Michael
Support request received via email
when I try to automate it at the command line I cannot make it work.
my Syntax is
@echo off
C:\Program Files (x86)\FlowHeater V2\BIN\FHBatch.exe C:\Program Files (x86)\FlowHeater V2\BIN\EuroSimm.fhd
FHBatch.exe exists in BIN
EuroSimm.fhd works manually and it is in BIN
I have made it work once but it does not work on demand the file has more than 50 records in it.
Michael
Support request received via email
Best wishes
Robert Stark
Did this answer your question? We would be grateful if you provide a brief comment as feedback. It may also help others who may have encountered a similar problem.
Please Log in or Create an account to join the conversation.
- FlowHeater-Team
- Topic Author
- Offline
- Admin
11 years 9 months ago #2268
by FlowHeater-Team
Best wishes
Robert Stark
Did this answer your question? We would be grateful if you provide a brief comment as feedback. It may also help others who may have encountered a similar problem.
Replied by FlowHeater-Team on topic Re:MySQL automated batch import
Hi Michael,
The spaces in the paths are the problem!
Please try to use the follow batch CMD script instead:
The spaces in the paths are the problem!
Please try to use the follow batch CMD script instead:
Code:
@echo off
REM adapt the following to the actual path of FHBatch.exe
set FHBATCH="C:\Program Files (x86)\FlowHeater V2\BIN\FHBatch.exe"
REM execute FHBatch.Exe
%FHBATCH% "C:\Program Files (x86)\FlowHeater V2\BIN\EuroSimm.fhd"
Best wishes
Robert Stark
Did this answer your question? We would be grateful if you provide a brief comment as feedback. It may also help others who may have encountered a similar problem.
Please Log in or Create an account to join the conversation.
Time to create page: 0.248 seconds