Download the PHP package drmvc/database without Composer
On this page you can find all versions of the php package drmvc/database. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package database
DrMVC\Database
Advanced module for work with databases and models.
composer require drmvc/database
It is a specific module, allows you to use multiple databases at the same time, you can switch database from model class, you can call same model methods with different databases, you can work with MongoDB and Mysql from one controller, everything what you want.
Supported databases
For now only databases from list below is supported, but support of some new databases will be added soon.
Driver | Database |
---|---|
mysql | MySQL and MariaDB |
pgsql | PostgreSQL |
sqlite | SQLite (file and memory modes) |
mongodb | MongoDB (php 7.0 and above only) |
Database configuration
You can find few examples of database config files with description and links here.
Example of MySQL database.php
config file:
Where:
- default - name of database connection which must be used by default
- driver - any driver from this list
- prefix - prefix of tables names, required by almost all methods (but not for
select()
orrawSQL()
)
How to use
Basic example
A small example of working with a database with the simplest implementation of the basic CRUD logic, they do not have JOIN, ORDER and other complex methods, only basic functionality.
Source code of example.php
file:
Simple connect to database
Sometimes it is required to implement a system that works directly
with the database object (for example some ORM or custom queries),
for this purpose in Database
class the getInstance
method was
implemented.
OOP style
As mentioned earlier in this library, implemented basic CRUD support, that is, you can declare the models dynamically and write simple queries into the database for which the ORM would be redundant. For example, you need to insert a row, delete or query all rows from the table.