qdladoooo/sweeter-fetch

Sweeter-fetch, a wrapper of PDO. Procedure oriented, pre process, as supplement of ORM.

v0.2 2016-06-08 02:55 UTC

This package is not auto-updated.

Last update: 2024-04-13 16:56:58 UTC


README

Wrapper for PDO.

Procedure oriented, Pre process, As supplement of ORM.

Build Status Latest Stable Version Latest Unstable Version License

Installation

composer require qdladoooo/sweeter-fetch

Initialization

require "../vendor/autoload.php";
use SweeterFetch\SweeterFetch;

$sf = new SweeterFetch('host', 'username', 'password');

Use

Execute none query

//return nothing
$sf->Enq('use candy_shop;');

Execute query

//return [row1, row2, ...]
$sf->Eq($sql);

Execute one row

//return the first row by array
$sf->Eor($sql);

Execute column

//return a column
$sf->Ec($sql);

Execute scalar

//return a number
$sf->Es($sql);

License

The Sweeter-fetch is open-sourced software licensed under the MIT license.