apitin / database
Database
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:package
Requires
- php: >=8.0.0
- apitin/framework: 1.*
This package is auto-updated.
Last update: 2025-03-07 21:53:03 UTC
README
Database (PDO) extensions for apitin/apitin
with query builder and ORM (as active record)
See https://github.com/wex/apitin-apitin to learn more.
Notice: master branch is still work in progress - only use stable releases!
Building query
$users = new Apitin\Database\Select('users'); $users->where('is_active = ?', 1); echo count($users->all()) . PHP_EOL;
How to define an active record
#[Table("users")] #[Column("name")] #[Column("logged_at", type: Column::TYPE_DATETIME)] class User extends Apitin\Database\Record { }
Table()
Table(string $tableName, string $primaryKey = 'id', bool $timeStamps = false, bool $softDelete = false)
- If
$timeStamps
is true, you also need columnscreated_at
andupdated_at
. - If
$softDelete
is true, you need columndeleted_at
.
Column()
Column(string $name, string $type = Column::TYPE_STRING, bool $required = false, mixed $default = null)
Column types
const TYPE_STRING = 'string'; const TYPE_INTEGER = 'int'; const TYPE_DECIMAL = 'decimal'; // Converted to/from boolean <-> int const TYPE_BOOLEAN = 'bool'; // Converted to/from DateTimeImmutable const TYPE_DATETIME = 'datetime'; // Converted to/from DateTimeImmutable const TYPE_DATE = 'date';
Create user
$user = User::create([ 'name' => 'Test User', ]); $user->save();
Read a single user (with PK=5)
$user = User::load(5);
Edit user (with PK=5)
$user = User::load(5); $user->name = 'Updated Test User'; $user->save();
Delete user (with PK=5)
$user = User::load(5); $user->destroy();
Find single user
$user = User::select()->where('name = ?', 'Test User')->first();
Find multiple users
$select = User::select()->where('id > 6'); $users = $select->all(); echo count($users) . PHP_EOL;