Parameters for read in dblayer are provided in array to have more than one criteria.
git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@1220 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
37
dblayer.php
37
dblayer.php
@@ -103,29 +103,40 @@ class dblayer extends PDO
|
||||
}
|
||||
|
||||
/** Read all the table or only one line defined by the select key, the select
|
||||
operator and the associated select value */
|
||||
function read ($selectkey=null, $selectval=null, $selectop="=")
|
||||
operator and the associated select value
|
||||
$select = array (array ($key, $val, $operator))
|
||||
$key=>column, $val=>value to found, $operator=>'LIKE', =...
|
||||
*/
|
||||
function read ($select=null)
|
||||
{
|
||||
if ($this->db === null)
|
||||
throw new Exception ("Database not connected");
|
||||
if ($selectop !== "=" && $selectop !== "like" && $selectop !== null)
|
||||
throw new Exception ("Invalid selectop");
|
||||
if ($selectkey !== null &&
|
||||
! in_array ($selectkey, array_keys ($this->fields)))
|
||||
throw new Exception ("Unknown key field provided");
|
||||
$req = "SELECT ";
|
||||
$req .= implode (",", array_keys ($this->fields));
|
||||
$req .= " FROM `".$this->table."`";
|
||||
if ($selectkey !== NULL && $selectval !== NULL)
|
||||
$req .= " WHERE $selectkey $selectop :selectkey";
|
||||
if ($select !== null)
|
||||
{
|
||||
$req .= " WHERE ";
|
||||
foreach ($select as $n=>$s)
|
||||
{
|
||||
if ($n > 0)
|
||||
$req .= " AND ";
|
||||
if (!isset ($s[2]))
|
||||
$s[2] = "=";
|
||||
$req .= " ".$s[0]." ".$s[2]." :".$s[0];
|
||||
}
|
||||
}
|
||||
|
||||
if ($this->debug) echo "DEBUG : $req\n";
|
||||
$st = $this->db->prepare ($req);
|
||||
if ($selectkey !== NULL && $selectval !== NULL)
|
||||
if ($select !== NULL)
|
||||
{
|
||||
if ($this->debug) echo "DEBUG BIND : selectkey->".
|
||||
var_export ($selectkey, TRUE)."\n";
|
||||
$st->bindValue (":selectkey", $selectval);
|
||||
foreach ($select as $s)
|
||||
{
|
||||
if ($this->debug) echo "DEBUG BIND : ".$s[0]."->".
|
||||
var_export ($s[1], TRUE)."\n";
|
||||
$st->bindValue (":".$s[0], $s[1]);
|
||||
}
|
||||
}
|
||||
$st->execute ();
|
||||
$res = array ();
|
||||
|
||||
Reference in New Issue
Block a user