Hello,
I want to upload a csv file to a table in mysql (using the LOAD DATA INFILE) but we must not burn the filename in code. We must prompt the user of the application for a filename and then assign it to a global variable for later execution of the sql sentence using this value provided. How can I prompt user for this (like an inputbox) value? I tried using the global variable as an IN in the application but just get prompted in development environment, once I get to production it does not prompt for the variable value.
Thank you,