Download the PHP package codesvault/howdy-qb without Composer
On this page you can find all versions of the php package codesvault/howdy-qb. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download codesvault/howdy-qb
More information about codesvault/howdy-qb
Files in codesvault/howdy-qb
Informations about the package howdy-qb
WP Query Builder
Relational Database Query builder for WordPress.
WP Query Builder uses PDO
for database queries. It has zero dependencies with third-party query builders or any other composer library.
Documentation
Documentation website here.
This Query Builder is also used in Kathamo Framework. Kathamo is a modern framework for WordPress plugin development.
Examples
Create Table
Insert Statement
Update Statement
Select Statement
Delete Statement
Drop Statement
Alter Statement
Single instence
Expressions also can be exicuted with one instence of DB
class. By doing this database connection will be stablished only once.
Database Connection
By default database connection will set out of the box, automaically. But you can also manually input database configurations. This way, you also can debug your database queries from terminal.
Driver
The default driver is pdo
. But if you want to use wpdb
which uses Mysqli, you also can do that by changing the driver.
Dev Envirenment Setup for Contributors
Want to contribute to this package? Please follow the steps below.
- Create a local WordPress envirenment setup.
- Create a basic plugin.
- Run
composer init
into the plugin. - Clone
[email protected]:CodesVault/howdy_qb.git
into plugin folder. -
Add repository for local package in plugin's
composer.json
."repositories": [ { "type": "path", "url": "./howdy_qb", "options": { "symlink": true } } ],
- Require this package.
composer require "codesvault/howdy-qb @dev"