squidit / cycle-sql-tagger
Tag SQL queries by placing a SQL comment
v0.1.1
2024-11-29 22:22 UTC
Requires
- php: ^8.3
- cycle/database: ^2.3
Requires (Dev)
- ext-pdo: *
- friendsofphp/php-cs-fixer: ^3.55
- phpstan/phpstan: ^2.0
- phpunit/phpunit: ^11.4
- squidit/php-coding-standards: ^2.0
This package is auto-updated.
Last update: 2024-11-29 22:23:28 UTC
README
Cycle Database decorator to add SQL comments to your queries.
Features
- Tag Query & Execute database calls
- Tag All QueryBuilder queries
- Multi-Line comment support
Use Case
When applications grow, it can be hard to keep track of the origins of an SQL Query. This class will allow you to tag your query with an SQL comment. Tagging your queries will help your DBAs in reporting back on slow performing SQL queries.
Usage - example:
<?php declare(strict_types=1); use Cycle\Database\Config\DatabaseConfig; use SquidIT\Cycle\Sql\Tagger\DatabaseManagerWithTagger; use SquidIT\Cycle\Sql\Tagger\DatabaseWithTagger; /** * Set up your cycle/database database configuration * * Make sure you select the following driver * driver: SquidIT\Cycle\Sql\Tagger\Driver\MySQL\MySQLTagDriver::class, */ /** @var DatabaseConfig $dbConfig */ $dbConfig = new Config\DatabaseConfig([ ... 'connections' => [ 'mariaDbDsn' => new Config\MySQLDriverConfig( ... driver: MySQLTagDriver::class, ... ), ], ]); $dbal = new DatabaseManagerWithTagger($dbConfig); /** @var DatabaseWithTagger $database */ $database = $dbal->database(); $database->tagQueryWithComment('Filename: file.php, Method: MethodName, LineNr: 10'); $database->query('SELECT [QUERY]'); // After executing a SQL query the comment is removed $database->tagQueryWithComment('Filename: file.php, Method: MethodName, LineNr: 10'); $database->execute('INSERT [QUERY]'); // the following will have the same result $database->tagQueryWithComment('Filename: file.php, Method: MethodName, LineNr: 10'); $selectQuery = $db->select(); $selectQuery->fetchAll(); // or: $selectQuery = $db->select(); $selectQuery->tagQueryWithComment('Filename: file.php, Method: MethodName, LineNr: 10'); $selectQuery->fetchAll();
Database log output (first example only)
241128 17:21:54 29 Connect test@localhost on cycle_sql_tagger using TCP/IP
29 Query /* 2024-11-28T16:21:54.401123: Filename: file.php, Method: MethodName, LineNr: 10 */
SELECT [QUERY]
29 Quit