MysqlDriver
Configuaration
'db' => [
'db_driver' => 'mysql',
'db_host' => 'localhost',
'db_port' => 3306,
'db_username' => 'root',
'db_password' => '',
'db_database' => 'cms.vn',
'db_charset' => 'utf8mb4',
'db_collate' => 'utf8mb4_unicode_ci',
],__construct()
<?php
public function __construct($config) {
$this->config = $config;
$this->connect();
}query()
lastInsertId()
count()
fetchAll()
fetchPagination()
fetchPaginationWithField()
fetchRow()
fetchRowfetchRowField()
insert()
update()
delete()
Last updated
Was this helpful?