Tema: PODO Error
Ver Mensaje Individual
  #4 (permalink)  
Antiguo 20/10/2007, 16:45
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 7 meses
Puntos: 2135
Re: PODO Error

Prueba este codigo:
Código PHP:
try{

$coneccion = new PDO("mysql:host=localhost;dbname=pdo","root","root ");

$stmt $coneccion->prepare("CALL devolver(?)");

$valor 0;

$stmt->bindParam(1,$valor,PDO::PARAM_INT,11);

$stmt->execute();

print 
$valor;

}catch (
Exception $exception) {

echo 
$exception->getMessage();

Saludos.