sy/db

Simple database layer on top of PDO

1.3.0 2023-04-07 14:05 UTC

This package is auto-updated.

Last update: 2024-04-07 16:23:09 UTC


README

Database layer based on PDO

Installation

Install the latest version with

composer require sy/db

Basic Usage

<?php

use Sy\Db\Gate;

// connection
$this->gate = new Gate('sqlite:' . __DIR__ . '/database.db');

// create table
$this->gate->execute('
	CREATE TABLE test_table (
		id INTEGER PRIMARY KEY,
		name TEXT NOT NULL
	)
');

// insert
$this->gate->insert('test_table', ['id' => 1, 'name' => 'hello']);

// select
$res = $this->gate->queryAll('SELECT * FROM test_table', PDO::FETCH_ASSOC);
print_r($res);

Output

Array
(
    [0] => Array
        (
            [id] => 1
            [name] => hello
        )
)