mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
83 lines
1.6 KiB
PHP
Executable File
83 lines
1.6 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Oracle database driver for Editor
|
|
*
|
|
* @author SpryMedia
|
|
* @copyright 2014 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 OracleResult extends Result {
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* Constructor
|
|
*/
|
|
|
|
function __construct( $dbh, $stmt, $pkey_val )
|
|
{
|
|
$this->_dbh = $dbh;
|
|
$this->_stmt = $stmt;
|
|
$this->_pkey_val = $pkey_val;
|
|
}
|
|
|
|
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* Private properties
|
|
*/
|
|
|
|
private $_stmt; // Result from oci_parse
|
|
private $_dbh; // Result from oci_connect
|
|
private $_rows = null;
|
|
private $_pkey_val;
|
|
|
|
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* Public methods
|
|
*/
|
|
|
|
public function count ()
|
|
{
|
|
return count($this->fetchAll());
|
|
}
|
|
|
|
|
|
public function fetch ( $fetchType=\PDO::FETCH_ASSOC /* irrelevant for oci8 */ )
|
|
{
|
|
return oci_fetch_assoc( $this->_stmt );
|
|
}
|
|
|
|
|
|
public function fetchAll ( $fetchType=\PDO::FETCH_ASSOC /* irrelevant for oci8 */ )
|
|
{
|
|
if ( ! $this->_rows ) {
|
|
$out = array();
|
|
|
|
oci_fetch_all( $this->_stmt, $out, 0, -1, OCI_FETCHSTATEMENT_BY_ROW + OCI_ASSOC );
|
|
|
|
$this->_rows = $out;
|
|
}
|
|
|
|
return $this->_rows;
|
|
}
|
|
|
|
|
|
public function insertId ()
|
|
{
|
|
return $this->_pkey_val;
|
|
}
|
|
}
|
|
|