Import File Application

hi,

in the new version is planned to run an application to import from file?

thanks

Re: Import File Application

Explain better the idea :slight_smile:

Re: Import File Application

have an application that can import csv or txt files in your database tables.

like this http://www.ironspeed.com/products/Reporting.aspx#CSVImport

Re: Import File Application

but is simple to do it. very simple.

just create a control application, one field document and on the onValidateSuccess event, use

//mysql
sc_exec_sql(“LOAD DATA INFILE '”. $path_to_the_file_uploaded ."’ INTO TABLE test …");

Re: Import File Application

thanks for the help!