sqlify-0.1.1 is not a library.
sqlify
A CLI tool to format your SQL code.
Features
This tool utilizes sqlformat under the hood to format the given SQL code.
Installation
To install sqlify
simply run the cargo install
command:
Usage
To use it simply pass in your SQL as the argument, or pipe it from a file, like this:
# or
|
# or
where query.sql
looks like
SELECT * FROM tablename
to get the following output:
SELECT
*
FROM
tablename
There are fomrating options from sqlformat exposed through arguments:
-u
or--uppercase
to denote the use of uppercase keywords-t
or--tabs
to denote the use of tabs-i
or--indent
to specify the number of spaces to use for indentation (defaults to 2), ignored if tabs are used-l
or--lines-between-queries
to specify the number of line breaks to use between queries (defaults to 1)