mirror of
https://github.com/nxshock/gron.git
synced 2024-11-27 03:41:00 +05:00
8 lines
535 B
Plaintext
8 lines
535 B
Plaintext
Type = "sql" # sql execution
|
|
Cron = "* * * * *" # cron instructions
|
|
Description = "execute procedure every minute" # job description
|
|
|
|
Driver = "pgx" # "pgx" for Postgresql, "oracle" for Oracle, "sqlserver" for Microsoft SQL Server
|
|
ConnectionString = "postgres://login:password@host:port/database?sslmode=disable" # each driver has different syntax
|
|
SqlText = "CALL procedure" # command to execute
|