drago-ex / database
Connecting to database for Nette Framework
Installs: 4 299
Dependents: 4
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- php: >=8.3 <8.9
- dibi/dibi: ^5.0
Requires (Dev)
- nette/bootstrap: ^3.2
- nette/tester: ^2.5
- phpstan/phpstan-nette: ^1.2.9
- tracy/tracy: ^2.7
README
Simple recurring questions.
Technology
- PHP 8.3 or higher
- composer
Knowledge
Installation
composer require drago-ex/database
Basic Model Example
#[Table('table_name', 'primary_key')] class Model { use Database; }
Common Queries
Reading records from a table:
$this->model->read('*');
Find records by column name:
$this->model->find('column, 'value');
Get a record by ID:
$this->model->get(1);
Delete a record by column name:
$this->model->delete('column, 'value');
Save records as an array (update if id
is provided):
$this->model->save(['column' => 'value']);
Using Entities
class SampleEntity extends Drago\Database\Entity { public const Table = 'name'; public const PrimaryKey = 'id'; public ?int $id = null; public string $sample; }
Use the entity in a model:
#[From(SampleEntity::Table, SampleEntity::PrimarKey)] class Model { use Database; }
Fetch records as objects:
$row = $this->model->find('id', 1)->record(); // Accessing properties echo $row->id; echo $row->sample;
Save Entity Records
To save entity data (update record if id
is present):
$entity = new SampleEntity; $entity->id = 1; $entity->sample = 'sample'; $this->save($entity);
Advanced Features
Entity Class for Database Mapping
You can use a custom entity class with database mapping:
/** @extends Database<SampleEntity> */ #[From(SampleEntity::Table, SampleEntity::PrimaryKey, class: SampleEntity::class)] class Model { use Database; } // Fetch records directly as objects $row = $this->model->find('id', 1)->record(); // Access the object's properties echo $row->id; echo $row->sample; // Fetch all records $allRecords = $this->model->read('*')->recordAll();
Entity Generation
For automatic entity generation, consider using the Drago Generator tool: https://github.com/drago-ex/generator