Page 1 of 1

Automatic CSV data import

Posted: 2025-05-16 10:22
by wrenkens
Hi,
Is there a way to load data from a CSV file into a table automatically, i.e. without the detour via Import CSV Data?
Background: I receive my monthly account statements as a CSV file and would like to process them in APPGINI.

Re: Automatic CSV data import

Posted: 2025-05-17 19:44
by pbottcher
Hi,

as AppGini per se is a Web App, the automation needs to be done outside of AppGini. So for Unix you may use a cron job, or on windows a scheduled task. With this you can create an import script that would scan a directory for a new file and import it, if it is detected.

Re: Automatic CSV data import

Posted: 2025-05-18 07:18
by wrenkens
Thanks, pbottcher,
I will work on this.