Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can anyone spot where I might be going wrong with the following code?

<?php

    //MySQL Database Connect
    require 'config.php';
    $unitFrom = "kilogram";
    $unitTo = "gram";
    $units = "9000";

    try{
    require 'config.php';
    $stmt = $dbh->prepare('CALL sp_get_conversion(:in_unit_from, :in_unit_to, :in_amount, @out_amount)');
    $stmt->bindParam(':in_unit_from',$unitFrom,PDO::PARAM_STR,4000);
    $stmt->bindParam(':in_unit_to',$unitTo,PDO::PARAM_STR,4000);
    $stmt->bindParam(':in_amount',$units,PDO::PARAM_STR,4000);
    $stmt->execute();
    }
    catch (PDOException $e) {
    print "Error!: " . $e->getMessage() . "<br/>";
    die();

    $conversion = $dbh->query( "SELECT @out_amount" )->fetchColumn(); 
    echo $conversion;

    }   
?>

When I run the stored procedure in phpmyadmin it works fine but nothing is echoed out when I try the code above.

Thanks

share|improve this question
No need to require the same file twice. Using require_once("config.php"); in this case would ensure that a second require_once would only require it if it hasn't been required already. – David Barker Mar 28 '12 at 13:27

2 Answers

up vote 2 down vote accepted

The following should be in the try block:

$conversion = $dbh->query( "SELECT @out_amount" )->fetchColumn(); 
echo $conversion;

You currently have it in the catch block so it will get executed only if there is an exception is generated.

share|improve this answer
That's it sorry amateur mistake! thanks – php_d Mar 28 '12 at 13:25

Try handling your error as dictated here. It's how I've always worked with PDO issues.

share|improve this answer
Cool thanks, nice tip – php_d Mar 28 '12 at 13:27
Whether exceptions are thrown (the preferred method IMHO) is dependent on the setting of PDO::ATTR_ERRMODE after the database connection is established (which I assume the OP is already setting). – w3d Mar 28 '12 at 13:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.