PHPackages                             oeltimacreation/php-simplequery - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. oeltimacreation/php-simplequery

ActiveLibrary[Database &amp; ORM](/categories/database)

oeltimacreation/php-simplequery
===============================

A small, framework-agnostic PDO query builder with deterministic SQL compilation

v0.5.0(2w ago)1111↓75%MITPHPPHP ^8.2CI passing

Since Jul 17Pushed 1w agoCompare

[ Source](https://github.com/oeltimacreation/php-simplequery)[ Packagist](https://packagist.org/packages/oeltimacreation/php-simplequery)[ Docs](https://github.com/oeltimacreation/php-simplequery)[ RSS](/packages/oeltimacreation-php-simplequery/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (6)Dependencies (27)Versions (13)Used By (0)

OeltimaCreation PHP SimpleQuery
===============================

[](#oeltimacreation-php-simplequery)

PHP SimpleQuery is a small, framework-agnostic PDO query builder for PHP 8.2+ with deterministic SQL compilation, typed positional bindings, and explicit connection and transaction ownership.

It supports MariaDB 11.8, MySQL 8.0, and SQLite 3.39.2+ through PDO. It is a query builder—not an ORM, migration tool, connection pool, or retry layer.

Install
-------

[](#install)

```
composer require oeltimacreation/php-simplequery:^0.6
```

Your PHP installation also needs `ext-pdo` and the matching driver, such as `pdo_sqlite` or `pdo_mysql`.

Quick start
-----------

[](#quick-start)

This complete SQLite example creates a table, writes a row, and reads it back. It needs no server, so it is a good first check after installation.

```
