moviet / tuisql
A php database query builder library
Requires
- php: >=7.0
- phpunit/dbunit: ^4.0
Requires (Dev)
- phpunit/phpunit: ^7.5
This package is auto-updated.
Last update: 2025-03-07 07:15:06 UTC
README
Tuisql is a fast database query builder, scalable and portability, based on PDO (PHP Data Object) as quick prepare statement, build on minimalize source codes with richest usage that may will help you to make an efficient development and reduce any complexity just at the first you have to know how we add security against sql injection on the nice docs you must read by carefully and use with yaayy
Already
Install
composer require "moviet/tuisql"
Features
- Build Connection
- Simple C.R.U.D
- Various Of Query
- Hardcoded Query
- Retrieve Query
Usage
Build Connection
-
You can simply write database configuration like imho
Setting Driver Hostname Port Number Database Name Username Password require __DIR__ . '/vendor/autoload.php'; use Moviet\Base\Tuisql; use Moviet\Base\Puppen\Tui; $connect = Tui::click( ['driver','hostname','port','dbname','username','password'] ); // Or simply like this $connect = Tui::click( ['mysql','localhost','3306','dbname','username','password'] );
-
For sqlite database you can use like simple
$connect = Tui::sqlite('folder/folder/folder','mysqlite.db');
Path location is your mind on your own directory by using simply format on above
Simple CRUD (Create, Read, Update, Delete)
-
To insert a database you can use Add just like below
require __DIR__ . '/vendor/autoload.php'; use Moviet\Base\Tuisql; use Moviet\Base\Puppen\Tui; $build = Tui::click( ['mysql','localhost','3306','dbname','username','password'] ); $connect = new Tuisql($build); $column = ['category','material','color']; $values = ['jacket','cotton','brown']; $connect->from('table') ->column($column) ->value($values) ->add();
INSERT INTO table (category, material, color) VALUES (:category1, :material2, :color3)
-
Then to read a simple database you can use Run as simply like this
$values = [$varOne, $varTwo, $varNext]; $connect->select('*') ->from('table') ->where('id, product') ->value($values) ->run();
SELECT * FROM table WHERE id=:id1 AND product=:product2
-
We don't want make a hard when update database, you can Fresh those
// use array style $connect->select(['table']) ->set(['column','column','column','column']) ->where(['column']) ->value(['work','easy','stay','writable']) ->fresh();
-
And last to delete database you can express Del with yayy
// use commas style $connect->from('table') ->where('column, column') ->value([$anyId, $anyVariable]) ->del();
By some different examples on above, you are totally free to express your styles
Various Of Query
-
Add single Limit Condition
$select = ['column','column','column']; $wheres = ['notes','usage']; $values = ['sweet','easy']; $connect->select($select) ->from('table') ->where($wheres) ->limit(10) // <= Optional integer/string ->value($data) ->run();
-
Add Offset Or Limits Condition
$select = 'column, column, column'; $wheres = 'type, category'; $values = ['comma','yippy', 10, 20]; // <= Add binding values $connect->select($select) ->from('table') ->where($wheres) ->limits('one, two') // <= add uniques :bind (implicitely) ->value($values) ->run();
SELECT column, column, column FROM table WHERE type=:type1 AND category=:category2 LIMIT :one, :two
-
Add Count Condition
$connect->select('column, column, column') ->count('column') ->from('table') ->where('column') ->limits('11, 12') // must be unique :naming ->value(['something', 11, 12]) ->run();
-
Add Distinct Condition
$connect->distinct('column AS price') ->from('table') ->where('something') ->limit(22) ->value(['something']) ->run();
-
Add Group By Condition
$select = ['column','column','column']; $wheres = ['column','column','column']; $values = ['make','ease','readable']; $connect->select($select) ->from('table') ->where($wheres) ->groupBy('hashtable') ->value($values) ->run();
-
Add Order By Condition
$select = ['column','column','column']; $wheres = ['column','column','column']; $values = ['free','styles','whatever']; $connect->select($select) ->from('table') ->where($wheres) ->groupBy('column') ->OrderBy('date ASC') // <= sorting ->limit('15') ->value($values) ->run();
-
Add Like Condition
$select = 'column, column, column'; $likes = 'chocolato, coffee'; $values = ['delicious','groovy']; $connect->select($select) ->from('table') ->isWhere() // <= require Where condition ->like($likes) ->value($values) ->run();
The above will add LIKE with AND condition, you can put ->orLike() to create OR condition
-
Add Having Condition
$connect->select('column, column, column') ->from('table') ->having('count(column) > :ten') // <= add optional :bind ->groupBy('column count(a, b, c)') ->value([10]) // <= get :bind value ->run();
-
Add Between Condition
$select = 'column, column, column'; $where = 'column, column'; $between = 'column, column'; // <= add between column name $values = ['distract','damages','between_val','between_val']; $connect->select($select) ->from('table') ->where($where) ->between($between) ->value($values) ->run();
-
Add OR with Where Condition
$select = 'column, column, column'; $where = 'column, column'; $values = ['magnum','doritos']; $connect->select($select) ->from('table') ->or() ->where($where) ->value($values) ->run();
-
Add Where In Condition
$select = ['column AS A','column']; $whereIn = ['column']; // add where in column $addIn = ['ca, ca, ca, ca']; // add uniques :binding $values = ['cheese','sauce','salt','sugar']; $connect->select($select) ->from('table') ->isWhere() // <= must be add where condition ->whereIn($whereIn, $addIn) ->value($values) ->run();
-
Add Not In Condition
$select = ['column','column']; $notIn = ['column NOT']; // add Not explicitely $addIn = ['id, id, id, id']; $values = ['homies','sweet','home','selfie']; $connect->select($select) ->from('table') ->isWhere() ->whereIn($notIn, $addIn) ->value($values) ->run();
-
Join Tables Without Attributes
$select = ['column.a','column.b','column.id as col']; $wheres = ['column.a','column.b']; $values = ['yayy','mooo']; $connect->select($select) ->from('table.a') ->where($wheres) ->value($values) ->run();
-
Inner Join Tables
$select = ['column.a*','column.b*']; $table = ['mytable']; $join = ['inner','column.b']; $addOn = ['column.a=column.id','column.b=column.id']; $wheres = ['column.aid','column.bid']; // <= add 2 :binds column $values = [11, 12]; // <= send bind with 2 values $connect->select($select) ->from($table) ->join($join) ->on($addOn) ->where($where) ->value($values) ->run();
You can join many table with parameter and add attribute eg. [join, inner, left, cross, right]
-
Join Multi Table With Where In
$select = ['column.a*','column.b*']; $table = ['mytable']; $join = ['left','column.b']; $addOn = ['column.a=column.id','column.b=column.id','column.b=column.a']; $whereIn = ['column.a']; // <= add column $inValue = ['id','id','id','id']; // <= add uniques :binds $order = ['date']; $values = [5, 20, 40, 48]; // <= add values $connect->select($select) ->from($table) ->join($join) ->on($addOn) ->isWhere() ->whereIn($whereIn, $inValue) ->orderBy($order) ->value($values) ->run();
Quotes :
With various examples on above you can express many styles by your self
Hardcoded Query
-
You don't want anybody knows what you need, so you can make a hardcoded like this
$select = ['column','column']; $table = ['tableA'] $join1 = ['join','column.b']; $On_1 = ['column.a=column.id','column.a=column.id','column.a=column.e']; $join2 = ['inner','column.b']; $On_2 = ['column.b=column.id','column.b=column.id','column.b=column.a']; $join3 = ['left','column.b']; $On_3 = ['column.c=column.id','column.c=column.id','column.c=column.b']; $join4 = ['cross','column.c']; $On_4 = ['column.d=column.id','column.d=column.id','column.d=column.c']; $join5 = ['right','column.c']; $On_5 = ['column.e=column.id','column.e=column.id','column.e=column.d']; $wereIn1 = ['column.a']; $withIn1 = ['a','a','a']; // <= add unique string binds => a = :ina1,.. $wereIn2 = ['column.b']; $withIn2 = ['b','b','b']; // <= add unique string binds => b = :inb1,.. $group = ['date.a']; $order = ['date.a ASC']; $limit = [20]; $values = [1, 2, 3, 4, 8, 16, 24, 32]; // <= depends on total parameter :binding $connect->select($select) ->from($table) ->join($join1) ->on($On_1) ->join($join2) ->on($On_2) ->join($join3) ->on($On_3) ->join($join4) ->on($On_4) ->join($join5) ->on($On_5) ->isWhere() ->or() ->whereIn($wereIn1, $withIn1) ->whereIn($wereIn1, $withIn2) ->groupBy($group) ->orderBy($order) ->limit($limit) ->value($values) ->run();
-
You can create a Badass query that's still possible and use DRAW with hardcoded manually
$colom = ['columnA','columnB AS Badass']; $count = ['columnD']; $table = ['columnA']; $draw1 = ['INNER JOIN column.b AS Bad ON column.id, column.di WHERE columnA.id=:param']; // <= add binding ":" name $draw2 = ['UNION ALL']; $draw3 = ['(SELECT column.id FROM columnC']; $join1 = ['left','column.b']; $addOn1 = ['column.b=column.id','column.b=column.id','column.b=column.a']; $join2 = ['cross','column.c']; $addOn2 = ['column.c=column.id','column.c=column.id','column.c=column.a']; $join3 = ['right','column.d']; $addOn3 = ['column.d=column.id','column.d=column.id','column.d=column.a']; $where = ['column.a','column.b','column.c']; $among = ['a.date','b.date']; $whereIn = ['column.a']; $withIn = ['id','id','id']; $likes = ['column.b', 'column.c']; $groups = ['columnA.date','columnB.date','columnC.date']; $orders = ['column.a ASC','column.b ASC','column.c ASC']; $limit = [':hundred)']; // <= add limit binding ":" name $values = ['home','sweet','home','makes', date('Y-m-d'), date('Y-m-d'), 1, 2, 3, 'badass','speed', 100]; // in sequence $connect->select($colom) ->count($count) ->from($table) ->draw($draw1) ->draw($draw2) ->draw($draw3) ->join($join1) ->on($addOn1) ->join($join2) ->on($addOn2) ->join($join3) ->on($addOn3) ->where($where) ->between($among) ->whereIn($whereIn, $withIn) ->orLike() ->like($likes) ->groupBy($groups) ->orderBy($orders) ->limit($limit) ->value($values) ->run();
Notes :
You must add uniques :name as binding when you get values from outside to prevent sql injection
The example on above will produces a hardcoded query like below
SELECT columnA, columnB AS Badass, COUNT(columnD) FROM columnA INNER JOIN column.b AS Bad ON column.id, column.date WHERE columnA.id=:bindparam UNION ALL (SELECT column.id FROM columnC LEFT JOIN column.b ON column.b=column.id, column.b=column.id, column.b=column.a CROSS JOIN column.c ON column.c=column.id, column.c=column.id, column.c=column.a RIGHT JOIN column.d ON column.d=column.id, column.d=column.id, column.d=column.a WHERE column.a=:columna1 AND column.b=:columnb2 AND column.c=:columnc3 AND a.date BETWEEN :bdate AND b.date BETWEEN :bdate AND column.a IN(:inid1, :inid2, :inid3) AND column.b LIKE :columnb1 OR column.c LIKE :columnc2 GROUP BY columnA.date, columnB.date, columnC.date ORDER BY column.a ASC, column.b ASC, column.c ASC LIMIT :hundred)
Joins
Attributes | Values |
---|---|
join | JOIN |
inner | INNER JOIN |
left | LEFT JOIN |
right | RIGHT JOIN |
cross | CROSSS JOIN |
Retrieve Query
-
You can retrieve a single row from Tuisql as simply as below
require __DIR__ . '/vendor/autoload.php'; use Moviet\Base\Tuisql; use Moviet\Base\Puppen\Tui; use Moviet\Base\Fetchs\Rtui; $database = Tui::click( ['mysql','localhost','3306','dbname','username','password'] ); $connect = new Tuisql($database); $column = ['myid','type','color']; $values = [123456]; $query = $connect->select($column) ->from('house') ->where('id') ->value($values) ->run(); $getRow = Rtui::oneRow($query); $myid = $getRow['myid']; $type = $getRow['type']; $color = $getRow['color']; $direct = Rtui::notFound($getRow, '404.shtml'); // Direct url eg. url/404.shtml
-
And to retrieve more data you can use like this
$database = Tui::click( ['mysql','localhost','3306','dbname','username','password'] ); $connect = new Tuisql($database); $column = ['code','shoes','color']; $values = [123456]; $query = $connect->select($column) ->from('house') ->where('code') ->value($values) ->run(); $allRow = Rtui::allRow($query); // Equivalent like fetchAll foreach ($allRow as $row => $all) { $code = $all['code']; $shoes = $all['shoes']; $color = $all['color']; } $direct = Rtui::notFound($allRow, '404.shtml'); // Direct url eg. url/404.shtml
-
Retrieve one column of query
$allRow = Rtui::oneColumn($query);
-
Retrieve Row Count of query
$allRow = Rtui::count($query);
-
Retrieve Row Num of query
$allRow = Rtui::oneNum($query);
-
Retrieve Row Lazy of query
$allRow = Rtui::oneLazy($query);
-
Retrieve Row Object of query
$allRow = Rtui::allObj($query);
License
Moviet/tuisql
is released under the MIT public license.