PABX criado para pesquisas
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
498 B

<?php
include("dbAbstract.php");
class dbura {
/*
* Tipos validos: select, insert, update, delete, storedproc.
*/
private $db;
private $sql;
private $in = array();
private $out = array();
public $affected = 0;
public $erro;
function __construct($db, $sql = '', $in = array(), $out = array()) {
$this->db = $db;
$this->sql = $sql;
$this->in = $in;
$this->out = $out;
}
function execute() {
}
}
?>