mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
74 lines
1.3 KiB
PHP
74 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* DataTables PHP libraries.
|
|
*
|
|
* PHP libraries for DataTables and DataTables Editor, utilising PHP 5.3+.
|
|
*
|
|
* @author SpryMedia
|
|
* @copyright 2012 SpryMedia ( http://sprymedia.co.uk )
|
|
* @license http://editor.datatables.net/license DataTables Editor
|
|
* @link http://editor.datatables.net
|
|
*/
|
|
|
|
namespace DataTables\Database\Driver;
|
|
if (!defined('DATATABLES')) exit();
|
|
|
|
use PDO;
|
|
use DataTables\Database\Result;
|
|
|
|
|
|
/**
|
|
* MySQL driver for DataTables Database Result class
|
|
* @internal
|
|
*/
|
|
class MysqlResult extends Result {
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* Constructor
|
|
*/
|
|
|
|
function __construct( $dbh, $stmt )
|
|
{
|
|
$this->_dbh = $dbh;
|
|
$this->_stmt = $stmt;
|
|
}
|
|
|
|
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* Private properties
|
|
*/
|
|
|
|
private $_stmt;
|
|
private $_dbh;
|
|
|
|
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* Public methods
|
|
*/
|
|
|
|
public function count ()
|
|
{
|
|
return count($this->fetchAll());
|
|
}
|
|
|
|
|
|
public function fetch ( $fetchType=\PDO::FETCH_ASSOC )
|
|
{
|
|
return $this->_stmt->fetch( $fetchType );
|
|
}
|
|
|
|
|
|
public function fetchAll ( $fetchType=\PDO::FETCH_ASSOC )
|
|
{
|
|
return $this->_stmt->fetchAll( $fetchType );
|
|
}
|
|
|
|
|
|
public function insertId ()
|
|
{
|
|
return $this->_dbh->lastInsertId();
|
|
}
|
|
}
|
|
|