ucscode / squery
SQL Syntax Generator for PHP
Requires
- php: >=8.1
Requires (Dev)
- phpunit/phpunit: ^10
README
SQL Syntax Generator for PHP
Introduction
Orignally made for User Synthetics, SQuery has progressed to the point of becoming an independent PHP library that simplifies the process of generating SQL syntax for your database queries. With sQuery, you can build SQL queries using an intuitive and fluent interface, reducing the need to write SQL directly. It supports various SQL operations like SELECT
, FROM
, JOIN
, WHERE
, GROUP BY
, and more.
The SQuery class provides a simplified and efficient way to interact with databases in PHP, specifically by easing the CRUD (Create, Read, Update, Delete) operations.
Features
- SQuery ensures the proper ordering of your SQL syntax, even if the methods are not called in order.
- SQuery supports nearly all functions related to SQL keywords.
- Build SQL queries in a structured and readable manner.
- Supports common SQL operations such as
SELECT
,FROM
,JOIN
,WHERE
,GROUP BY
,ORDER BY
, andLIMIT
. - Generate complex queries with ease by chaining methods.
- Designed to improve code maintainability and reduce the risk of SQL injection.
Requirements
- PHP 8.1 or higher.
- A compatible database (e.g., MySQL, MariaDB) and appropriate database extensions (e.g., MySQLi, PDO) to execute the generated queries.
Installation
composer require ucscode/squery
SELECT SQL EXAMPLE
use Ucscode\SQuery\SQuery; use Ucscode\SQuery\Condition; $squery = new SQuery(); $condition = new Condition(); $condition ->add("u.vendor", "ucscode") ->and("u.namespace", "SQuery") ->or("u.foundation", "Uss%", 'RLIKE'); $squery ->select("u.username") ->from("tablename", "u") ->where($condition) ->limit(2) ->groupBy('u.id', 'DESC') ; echo $squery->build();
INSERT SQL EXAMPLE
$data = [ 'username' => 'Ucscode', 'password' => '12345', 'role' => 'SUPER_ADMIN' ]; $squery = new SQuery(); $squery->insert('tablename', $data);
UPDATE SQL EXAMPLE
$data = [ 'username' => 'User Synthetics', 'password' => '54321', 'role' => 'PROJECT' ]; $condition = new Condition(); $condition ->add("user_id", 1) ->and('role', 'SUPER_ADMIN') ->or('username', 'spider-man', 'NOT') ->and('finance', null, 'IS NOT'); $squery = new SQuery(); $squery ->update('tablename', $data) ->where($condition);
DELETE SQL EXAMPLE
- To generate a DELETE query, use the
delete()
method:
$squery = new SQuery(); $condition = new Condition(); $condition->add("username", "trouble-maker"); $squery ->delete() ->from('tablename') ->where($condition);
USING JOIN STATEMENT
SQuery uses an instance of a Join
object to create and manage different types of join statements. For Example:
LEFT JOIN EXAMPLE
$squery = new SQuery(); $squery ->select([ "t1.*", "t2.value", "t1.status", ]) ->from('tablename', "t1"); // Left Join $leftJoin = new Join('table_2'); $on = (new Condition()) ->add("t2.user_id", "t1.id") ->and("t2.name", null); $leftJoin->setOn($on); $leftJoin->setAlias("t2"); $squery->leftJoin($leftJoin);
The same applies to other join statement like RIGHT JOIN
, INNER JOIN
etc
The Join
object literally accepts an SQuery
object as it's first parameter, making it capable of handling complex SQL
statement.
EXAMPLE
$squery = new SQuery(); $squery ->select('*') ->from('table_1', 't1'); // Create Complex Join Statement; $rightJoinQuery = (new SQuery()) ->select("*") ->from("table_2") ->where( (new Condition()) ->add("name", "ucscode") ->and("age", 3, ">") ) ->limit(7); $onCondition = (new Condition()) ->add("t1.port", "t2.port", null, false) ->or("t1.status", null, 'IS NOT'); $alias = "t2"; $rightJoin = new Join($rightJoinQuery, $onCondition, $alias); // Add the Right Join Statement $squery->rightJoin($rightJoin);
Warning!
It is important to note that the SQuery library does not automatically sanitize user input. When using the library, it is crucial to sanitize any user-supplied data before passing it as input to the SQuery methods.
Note
Please note that the SQuery
class only generates SQL query strings; it does not execute them against a database. To execute these queries, you would need to establish a database connection and use appropriate methods from the MySQLi or PDO libraries.
License
This project is licensed under the MIT License.