An expressive, query builder for WordPRess it can also be referred as a Database Abstraction Layer. Pixie WPDB supports WPDB ONLY and it takes care of query sanitization, table prefixing and many other things with a unified API.
Pixie WPDB is an adaption of
pixieoriginally written by usmanhalalit. Pixie is no longer under active development.
- Fluent API
- Nested Queries
- Multiple Connections
- Sub Queries
- JSON Support
- Model Hydration
- Custom Alias Facade
- Raw SQL Expressions
- Value Type Binding
- Transaction Support
- Query Events
$thing = QB::table('someTable')->where('something','=', 'something else')->first();The v0.2 refinements add the following, all backwards-compatible:
- Opt-in throw on WPDB error — set
Connection::THROW_ON_ERRORto have a$wpdberror raise aPixie\WpDbExceptioninstead of failing silently. - Table aliases — alias a selection or join table with the array syntax
['table' => 'alias'], e.g.->table(['posts' => 'p'])/->join(['users' => 'u'], …). when()— Eloquent-style conditional:->when($condition, fn($q) => $q->where(…), fn($q) => …).- JSON Support Phase 2 — verbose, portable JSON modification expressions via
$qb->jsonExpression():set,insert,replace,appendArray,insertArray,remove,merge,mergePatch,mergePreserve, plusorderByJson($col, $nodes, $dir, $castType). Uses the verboseJSON_*function syntax (never->/->>) so it runs on MySQL 5.7+ and MariaDB 10.2+.
// Throw on WPDB error (opt-in)
$connection = new Connection($wpdb, [Connection::THROW_ON_ERROR => true]);
// Aliased tables + conditional clause
$qb->table(['posts' => 'p'])
->join(['users' => 'u'], 'p.post_author', '=', 'u.ID')
->when($onlyPublished, fn($q) => $q->where('p.post_status', '=', 'publish'))
->get();
// JSON modification (portable JSON_SET) in an update
$qb->table('settings')->where('id', '=', 1)
->update(['data' => $qb->jsonExpression()->set('data', ['profile', 'name'], 'Sam')]);Internally the v0.2 work also relocated identifier sanitisation into a Sanitizer class, converted query statements and events to value objects, and uncoupled the where/table/select/join builders into self-contained handlers — all with no public API changes.
- WordPress 5.7+ (tested up to 6.9)
- PHP 8.0+
- MySql 5.7+ or MariaDB 10.2+
- Composer (optional)
The easiest way to include Pixie in your project is to use composer.
composer require gin0115/pixie-wpdbIf you are planning to just inlcude Pixie direct in your plugin, you can extract the src directory and add this to your functions.php or similar.
require_once '/path/to/src/loader.php'; Each class is checked if already loaded, to avoid conflicts if used on multiple plugins.
If you are only planning on having a single connection, you will only need to configure the connection once.
# Basic setup
// Access the global WPDB or a custom instance for additional tables.
global $wpdb;
// Configure the builder and/or internal WPDB instance
$connection_config = [Connection::PREFIX => 'gin0115_'];
// Give a *single* Alias
$builder_alias = 'Gin0115\\DB';
new Connection( $wpdb, $connection_config, $builder_alias );This would then give access to an instance of the QueryBuilder using this connection, via the alias defined Gin0115\DB
$foos = Gin0115\DB::table('foo')->where('column', 'red')->get();Generated & executed query :: "SELECT * FROM gin0115_foo WHERE column = 'red'; "
It is possible to configure the connection used by your instance of the query builder.
Values
| Key | Constant | Value | Description |
|---|---|---|---|
| prefix | Connection:: PREFIX | STRING | Custom table prefix (will ignore WPDB prefix) |
| use_wpdb_prefix | Connection:: USE_WPDB_PREFIX | BOOL | If true will use WPDB prefix and ignore custom prefix |
| clone_wpdb | Connection:: CLONE_WPDB | BOOL | If true, will clone WPDB to not use reference to the instance (usually the $GLOBAL) |
| show_errors | Connection:: SHOW_ERRORS | BOOL | If set to true will configure WPDB to show/hide errors |
| throw_on_error | Connection:: THROW_ON_ERROR | BOOL | If true, a $wpdb error during execution throws a Pixie\WpDbException instead of failing silently. Off by default. |
$config = [
Connection::PREFIX => 'acme_',
Connection::USE_WPDB_PREFIX => true,
Connection::CLONE_WPDB => true,
Connection::SHOW_ERRORS => false,
];When you create a connection:
new Connection($wpdb, $config, 'MyAlias');MyAlias is the name for the class alias you want to use (like MyAlias::table(...) ), you can use whatever 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.
Once a connection is created, the builder can be accessed either directly using the Alias Facade or by creating an instance.
The easiest way to use Pixie is to use the alias facade provided. This allows you to access a builder instance anywhere, much like WPDB.
// Create the connection early on.
$connection = new Connection($wpdb, $config, 'Alias');
// Insert some data to bar.
Alias::table('bar')->insert(['column'=>'value']);When not using an alias you can instantiate the QueryBuilder handler separately, helpful for Dependency Injection and Testing.
// Create connection and builder instance.
$connection = new Connection($wpdb, $config);
$qb = new QueryBuilderHandler($connection);
$query = $qb->table('my_table')->where('name', '=', 'Sana');
$results = $query->get();$connection here is optional, if not given it will always associate itself to the first connection, but it can be useful when you have multiple database connections.
This package began as a fork of Pixie originally written by usmanhalalit A few features have been inspired by the Pecee-pixie fork and continuation, especially the extended aggregate methods.
- 0.2.0 - v0.2 refinements: opt-in throw on WPDB error (
THROW_ON_ERROR), table aliases via['table' => 'alias']for selection and joins, Eloquent-stylewhen(), JSON Support Phase 2 (portableJSON_*modification expressions +orderByJsoncast-to-type), sanitiser relocated to aSanitizerclass, statements & events as value objects, query builders uncoupled into self-contained condition handlers. Toolchain updated to WordPress 6.9, PHP floor 8.0, PHPUnit ^8||^9, PHPStan ^2. No breaking API changes. - 0.0.3 - More improvements to the
updateOrInsert()method. - 0.0.2 - Improvements to the
updateOrInsert()method - 0.0.1 - Various external and interal changes made to the initial code written by Muhammad Usman
If you find any typo then please edit and send a pull request.
© 2022 Glynn Quelch. Licensed under MIT license.
