This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user nginx; | |
worker_processes 1; | |
error_log /var/log/nginx/error.log warn; | |
pid /var/run/nginx.pid; | |
events { | |
worker_connections 1024; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* MySql database | |
:PROPERTIES: | |
:header-args:sql: :engine mysql | |
:header-args:sql+: :cmdline "my_db -u john_doe -h 127.0.0.1" | |
:header-args:sql+: :var start_date="2019-02-27" | |
:header-args:sql+: :var end_date="2020-02-29" | |
:END: | |
** Get all clients | |
Press C-c C-c inside next block to query the database. |