A lightweight, expressive database query builder for WordPress which can be referred to as a Database Abstraction Layer. WP Fluent uses the same wpdb instance and takes care of query sanitization, table prefixing and many other things with a unified API.
It has some advanced features like:
- Query Events
- Nested Criteria
- Sub Queries
- Nested Queries
The syntax is quite similar to Laravel's query builder.
// You can use the global wpFluent() function
$user = wpFluent()->table('users')->find(1);
// Or, create a connection using $wpdb, only once.
global $wpdb;
new \WpFluent\Connection($wpdb, ['prefix' => $wpdb->prefix], 'DB');
Simple Query:
The query below returns the row where id = 3, null
if no rows.
$user = DB::table('users')->find(3);
Full Queries:
$query = DB::table('users')->where('display_name', 'LIKE', '%admin%');
// Get result
$query->get();
Query Events:
After the code below, every time a select query occurs on posts
table,
it will add this where criteria, so drafted posts don't surface.
DB::registerEvent('before-select', 'posts', function ($qb) {
$qb->where('psot_status', '!=', 'draft');
});
There are so many advanced options documented below. Sold? Let's install.
- Connection
- Query
- Select
- Where
- Group By and Order By
- Having
- Limit and Offset
- Join
- Raw Query
- Insert
- Update
- Delete
- Transactions
- Get Built Query
- Sub Queries and Nested Queries
- Get PDO Instance
- Fetch results as objects of specified class
- Query Events
WP Fluent supports multiple database connections but you can use alias for only one connection at a time. Just pass the global wpdb and necessary configurations during connection.
// Get the global wpdb instance.
global $wpdb;
new \WpFluent\Connection($wpdb, ['prefix' => $wpdb->prefix], 'DB');
// Run query
$query = DB::table('my_table')->where('name', '=', 'admin');
// Or, simply use the global wpFluent() function.
// It handles all the ncessary initial setup.
wpFluent()->table('my_table')->where('name', '=', 'admin');
When you create a connection:
new \WpFluent\Connection($wpdb, ['prefix' => $wpdb->prefix], 'MyAlias');
MyAlias
is the name for the class alias you want to use e.g. MyAlias::table(...)
You can use any name (with Namespace also, MyNamespace\\MyClass
) you like or
you may skip it if you don't need an alias. Alias gives you the ability
to easily access the QueryBuilder class across your application.
When not using an alias you can instantiate the QueryBuilder handler separately, helpful for Dependency Injection and Testing.
$connection = new \WpFluent\Connection($wpdb, ['prefix' => $wpdb->prefix]);
$db = new \WpFluent\QueryBuilder\QueryBuilderHandler($connection);
$query = $db->table('my_table')->where('name', '=', 'admin');
var_dump($query->get());
You must use table()
method before every query, except raw query()
.
To select from multiple tables just pass an array.
DB::table(array('mytable1', 'mytable2'));
The query below returns the first row where id = 3, null
if no rows.
$row = DB::table('my_table')->find(3);
Access your row like, echo $row->name
. If your field name is not id
then
pass the field name as second parameter DB::table('my_table')->find(3, 'person_id');
The query below returns all the rows where name = 'Frost'
, null
if no rows.
$result = DB::table('my_table')->findAll('name', 'admin');
$query = DB::table('my_table')->select('*');
->select(array('mytable.myfield1', 'mytable.myfield2', 'another_table.myfield3'));
Using select method multiple times select('a')->select('b')
will also select a
and b
. It can be useful if you want to do conditional selects (within a PHP if
).
->selectDistinct(array('mytable.myfield1', 'mytable.myfield2'));
Return an array.
$query = DB::table('my_table')->where('name', '=', 'admin');
$result = $query->get();
You can loop through it like:
foreach ($result as $row) {
echo $row->name;
}
$query = DB::table('my_table')->where('name', '=', 'admin');
$row = $query->first();
Returns the first row, or null
if there is no record. Using this method you can also
make sure if a record exists. Access it like $row->name
$query = DB::table('my_table')->where('name', '=', 'admin');
$query->count();
Basic syntax is (fieldname, operator, value)
, if you give two parameters then =
operator is assumed. So where('name', 'admin')
and where('name', '=', 'admin')
are the same.
DB::table('my_table')
->where('name', '=', 'admin')
->whereNot('age', '>', 25)
->orWhere('type', '=', 'admin')
->orWhereNot('description', 'LIKE', '%query%');
DB::table('my_table')
->whereIn('name', array('rabindranath', 'najrul'))
->orWhereIn('name', array('homer', 'frost'));
DB::table('my_table')
->whereNotIn('name', array('homer', 'frost'))
->orWhereNotIn('name', array('rabindranath', 'najrul'));
DB::table('my_table')
->whereBetween('id', 10, 100)
->orWhereBetween('status', 5, 8);
DB::table('my_table')
->whereNull('modified')
->orWhereNull('field2')
->whereNotNull('field3')
->orWhereNotNull('field4');
Sometimes queries get complex, where you need grouped criteria, for example
WHERE age = 10 and (name like '%frost%' or description LIKE '%najrul%')
WP Fluent allows you to do so, you can nest as many closures as you need, like below.
DB::table('my_table')
->where('my_table.age', 10)
->where(function ($q) {
$q->where('name', 'LIKE', '%najrul%');
// You can provide a closure on these wheres too, to nest further.
$q->orWhere('description', 'LIKE', '%frost%');
});
$query = DB::table('my_table')->groupBy('age')->orderBy('created_at', 'ASC');
->groupBy(array('mytable.myfield1', 'mytable.myfield2', 'another_table.myfield3'));
->orderBy(array('mytable.myfield1', 'mytable.myfield2', 'another_table.myfield3'));
Using groupBy()
or orderBy()
methods multiple times groupBy('a')->groupBy('b')
will also group by first a
and than b
. Can be useful if you want to do conditional
grouping (within a PHP if
). Same applies to orderBy()
.
->having('total_count', '>', 2)
->orHaving('type', '=', 'admin');
->limit(30);
->offset(10);
DB::table('my_table')
->join('another_table', 'another_table.person_id', '=', 'my_table.id')
Available methods,
- join() or innerJoin
- leftJoin()
- rightJoin()
If you need FULL OUTER
join or any other join, just pass it as 5th parameter to
join
method.
->join('another_table', 'another_table.person_id', '=', 'my_table.id', 'FULL OUTER')
If you need more than one criterion to join a table then pass a closure as second parameter.
->join('another_table', function ($table) {
$table->on('another_table.person_id', '=', 'my_table.id');
$table->on('another_table.person_id2', '=', 'my_table.id2');
$table->orOn('another_table.age', '>', DB::raw(1));
})
You can always use raw queries if you need,
$query = DB::query('select * from cb_my_table where age = 12');
var_dump($query->get());
You can also pass your bindings
DB::query('select * from cb_my_table where age = ? and name = ?', array(10, 'najrul'));
When you wrap an expression with raw()
method, WP Fluent doesn't try to sanitize these.
DB::table('my_table')
->select(DB::raw('count(cb_my_table.id) as tot'))
->where('value', '=', 'Frost')
->where(DB::raw('DATE(?)', 'now'))
NOTE: Queries that run through query()
method are not sanitized until you pass
all values through bindings. Queries that run through raw()
method are not sanitized
either, you have to do it yourself. And of course these don't add table prefix too,
but you can use the addTablePrefix()
method.
$data = [
'name' => 'Najrul',
'description' => 'Famous Bengali poet.'
];
$insertId = DB::table('my_table')->insert($data);
insert()
method returns the insert id.
$data = array(
[
'name' => 'Najrul',
'description' => 'Famous Bengali poet.'
],
[
'name' => 'Rabindranath',
'description' => 'Nobel winning Bengali poet.'
],
);
$insertIds = DB::table('my_table')->insert($data);
In case of batch insert, it will return an array of insert ids.
$data = [
'name' => 'Najrul',
'counter' => 1
];
$dataUpdate = [
'name' => 'Najrul',
'counter' => 2
];
$insertId = DB::table('my_table')->onDuplicateKeyUpdate($dataUpdate)->insert($data);
$data = [
'name' => 'Najrul',
'description' => 'Famous Bengali poet.'
];
DB::table('my_table')->where('id', 5)->update($data);
It will update the name
field to Najrul
and description
field to
Famous Bengali poet.
where id
= 5
.
DB::table('my_table')->where('id', '>', 5)->delete();
It will delete all the rows where id
is greater than 5
.
WP Fluent has the ability to run database "transactions", in which all database changes are not saved until committed. That way, if something goes wrong or differently then you intend, the database changes are not saved and no changes are made.
Here's a basic transaction:
DB::transaction(function ($qb) {
$qb->table('my_table')->insert([
'name' => 'Test',
'url' => 'example.com'
]);
$qb->table('my_table')->insert([
'name' => 'Test2',
'url' => 'example.com'
]);
});
If this were to cause any errors (such as a duplicate name or some other such error), neither data set would show up in the database. If not, the changes would be successfully saved.
If you wish to manually commit or rollback your changes, you can use the
commit()
and rollback()
methods accordingly:
DB::transaction(function ($qb) {
$qb->table('my_table')->insert(array(/* data... */));
$qb->commit(); // to commit the changes (data would be saved)
$qb->rollback(); // to rollback the changes (data would be rejected)
});
Sometimes you may need to get the query string, its possible.
$query = DB::table('my_table')->where('id', '=', 3);
$queryObj = $query->getQuery();
getQuery()
will return a query object, from this you can get sql, bindings or raw sql.
$queryObj->getSql();
// Returns: SELECT * FROM my_table where `id` = ?
$queryObj->getBindings();
// Returns: array(3)
$queryObj->getRawSql();
// Returns: SELECT * FROM my_table where `id` = 3
Rarely but you may need to run sub queries or nested queries. WP Fluent is powerful
enough to do this for you. You can create different query objects and use the
DB::subQuery()
method.
$subQuery = DB::table('person_details')->select('details')->where('person_id', '=', 3);
$query = DB::table('my_table')
->select('my_table.*')
->select(DB::subQuery($subQuery, 'table_alias1'));
$nestedQuery = DB::table(DB::subQuery($query, 'table_alias2'))->select('*');
$nestedQuery->get();
This will produce a query like this:
SELECT * FROM (SELECT `cb_my_table`.*, (SELECT `details` FROM `cb_person_details` WHERE `person_id` = 3) as table_alias1 FROM `cb_my_table`) as table_alias2
NOTE: WP Fluent doesn't use bindings for sub queries and nested queries.
If you need to get the wpdb instance you can do so.
DB::db();
WP Fluent comes with powerful query events to supercharge your application. These events
are like database triggers, you can perform some actions when an event occurs. For
example you can hook after-delete
event of a table and delete related data from
another table.
- before-select
- after-select
- before-insert
- after-insert
- before-update
- after-update
- before-delete
- after-delete
DB::registerEvent('before-select', 'users', function ($qb) {
$qb->where('status', '!=', 'banned');
});
Now every time a select query occurs on users
table, it will add this where criteria,
so banned users don't get access.
The syntax is registerEvent('event type', 'table name', action in a closure)
.
If you want the event to be performed when any table is being queried, provide
':any'
as table name.
Other examples:
After inserting data into my_table
, details will be inserted into another table
DB::registerEvent('after-insert', 'my_table', function ($queryBuilder, $insertId) {
$data = array('person_id' => $insertId, 'details' => 'Meh', 'age' => 5);
$queryBuilder->table('person_details')->insert($data);
});
Whenever data is inserted into person_details
table, set the timestamp field
created_at
, so we don't have to specify it everywhere:
DB::registerEvent('after-insert', 'person_details', function ($queryBuilder, $insertId) {
$queryBuilder->table('person_details')
->where('id', $insertId)
->update([
'created_at' => date('Y-m-d H:i:s')
]);
});
After deleting from my_table
delete the relations:
DB::registerEvent('after-delete', 'my_table', function ($queryBuilder, $queryObject) {
$bindings = $queryObject->getBindings();
$queryBuilder->table('person_details')->where('person_id', $binding[0])->delete();
});
WP Fluent passes the current instance of query builder as first parameter of your
closure so you can build queries with this object, you can do anything like usual
query builder (DB
).
If something other than null
is returned from the before-*
query handler, the value
will be result of execution and DB will not be actually queried (and thus, corresponding
after-*
handler will not be called either).
Only on after-*
events you get three parameters: first is the query builder,
third is the execution time as float and the second varies:
- On
after-select
you get theresults
obtained fromselect
. - On
after-insert
you get the insert id (or array of ids in case of batch insert) - On
after-delete
you get the query object (same as what you get fromgetQuery()
), from it you can get SQL and Bindings. - On
after-update
you get the query object likeafter-delete
.
DB::removeEvent('event-name', 'table-name');
Here are some cases where Query Events can be extremely helpful:
- Restrict banned users.
- Get only
deleted = 0
records. - Implement caching of all queries.
- Trigger user notification after every entry.
- Delete relationship data after a delete query.
- Insert relationship data after an insert query.
- Keep records of modification after each update query.
- Add/edit created_at and updated _at data after each entry.
- Query Events go recursively, for example after inserting into
table_a
your event inserts intotable_b
, now you can have another event registered withtable_b
which inserts intotable_c
. - Of course Query Events don't work with raw queries.
- This is forked from awesome @usmanhalalit vai's Pixie and modified to support WordPress.