usql
usql copied to clipboard
[run.go] Add stdin support (`-c -` or `-f -`)
Was surprised to see this not working:
echo 'SELECT version();' | usql_static "$DATABASE_URL" -c -
error: pq: 42601: syntax error at or near "-"
This PR should read from stdin following the common convention of providing a - to indicate input comes from stdin.