masnathan / sql-query-formatter
A very lightweight PHP class that reformats unreadable and computer-generated SQL query statements to human-friendly, readable text.
Requires
- php: >=5.3
Requires (Dev)
- phpunit/phpunit: ~4.2
This package is not auto-updated.
Last update: 2022-02-01 12:48:00 UTC
README
A very lightweight PHP class that re-formats unreadable or computer-generated SQL query statements to human-friendly readable text.
1.Installation
The recommended way to install the SQL Query Formatter is through Composer. Run the following command to install it:
php composer.phar require nilportugues/sql-query-formatter
2. Features
Human readable SQL formatting
- Human readable plain text. No colours, no highlighting. Plain text is good enough in most cases.
Data Binding Awareness
- SQL Query Formatter takes data binding seriously.
- Placeholder syntax such as
:variable
or?
is taken into account and is preserved when formatting.
3. Usage
Sample code:
<?php use NilPortugues\Sql\QueryFormatter\Formatter; $query = <<<SQL SELECT user.user_id, user.username, (SELECT role.role_name FROM role WHERE (role.role_id = :v1) LIMIT :v2, :v3 ) AS user_role, (SELECT role.role_name FROM role WHERE (role.role_id = :v4) LIMIT :v5, :v6 ) AS role FROM user WHERE (user.user_id = :v7) SQL; $formatter = new Formatter(); echo $formatter->format($query);
Real output:
SELECT user.user_id, user.username, ( SELECT role.role_name FROM role WHERE (role.role_id = :v1) LIMIT :v2, :v3 ) AS user_role, ( SELECT role.role_name FROM role WHERE (role.role_id = :v4) LIMIT :v5, :v6 ) AS role FROM user WHERE (user.user_id = :v7)
4. Fully tested
Testing has been done using PHPUnit and Travis-CI. All code has been tested to be compatible from PHP 5.4 up to PHP 5.6 and HHVM (nightly release).
To run the test suite, you need Composer:
php composer.phar install --dev bin/phpunit
5. Author
Nil Portugués Calderó
6. Special Thanks
I would like to thank the following people:
- Jeremy Dorn for his sql-formatter implementation I used as a basis for building this version.
7. License
SQL Query Formatter is licensed under the MIT license.
Copyright (c) 2015 Nil Portugués Calderó
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.