Home

Awesome

prql ("Prequel"): a command line MySQL syntax checker

EXAMPLE

$ prql examples
examples/apples.sql:2: syntax error at byte position 17 near 'SEL'

See prql -help for more options.

DOWNLOAD

https://github.com/mcandre/prql/releases

API DOCUMENTATION

https://godoc.org/github.com/mcandre/prql

MAJOR FEATURES

COMPLEX SCRIPT MATCHING

$ find examples -type f -name '*.sql' -print0 |
    while IFS= read -r -d '' f; do
        prql "$f" || exit 1
    done
examples/apples.sql:2: syntax error at byte position 17 near 'SEL'

RUNTIME REQUIREMENTS

CONTRIBUTING

See DEVELOPMENT.md.

LICENSE

FreeBSD

CREDITS