Ver Mensaje Individual
  #3 (permalink)  
Antiguo 25/11/2011, 05:34
loluchis
 
Fecha de Ingreso: octubre-2011
Mensajes: 37
Antigüedad: 13 años, 1 mes
Puntos: 9
Respuesta: Extender mysqli o hacer una nueva clase

yo no extenderia PDO, mas bien haria algo asi:

Código PHP:
<?php

class Database {

   protected 
$link;

   public function 
__construct($dsn$user$pass) {
       
$this->link = new PDO($dsn$user$pass);
   }

   public function 
query($string) {
       
$stmt $this->link->prepare($string);
       
$stmt->execute();
       return 
$stmt->fetchAll(PDO::FETCH_ASSOC);
    }

}

//luego podrias hacer algo asi:

$db = new Database('dsn''user''pass');

//select
var_dump($db->query('select * from table'));

//insert
$db->query('insert into table values(...)');