rony / dbquery
SQL Query creator
v1.0.2
2016-05-17 17:48 UTC
Requires
- php: >=5.3
This package is not auto-updated.
Last update: 2025-01-27 14:37:31 UTC
README
Installation
Install the latest version with
$ composer require rony/DBQuery
Basic Usage
<?php use DBQuery\SqlSelect; $sqlString = 'SELECT * FROM user'; $sqlSelect = new SqlSelect(); $sqlSelect->addColumn('*'); $sqlSelect->setEntity('user'); echo $sqlSelect->getInstruction();
Documentation
Coming Soon
About
Requirements
- Dbquery works with PHP 5.3 or above.
Submitting bugs and feature requests
Bugs and feature request are tracked on GitHub
License
DBQuery is licensed under the MIT License - see the LICENSE
file for details