检查pdo中mysql存储函数的布尔返回值

时间:2017-07-26 18:04:36

标签: php mysql pdo

我目前正在为我的系统构建数据库,并希望通过使用来自php的每个请求的存储函数和存储过程来创建数据库的抽象。 我的问题是我有一个功能,检查电子邮件是否存在,如果电子邮件存在则返回true,否则返回false。现在我如何在php中调用pdo后检查布尔返回值。我的PHP代码是

$connection = new DB_CONNECTION(); 
$sql = "SELECT email_exists(:email) ";
$placeholder = array(":email" => $userMail );
$statement = $connection->prepare_query( $sql );
$result = $statement->execute($placeholder);
$result = $statement->fetch();
echo $result;

1 个答案:

答案 0 :(得分:0)

只需给返回的值var expr = this.GetBinding(TextProperty).GetBindingExpression(); ,就可以通过数组中的索引访问它。

//to access path - you can directly use the binding object
var binding = this.GetBinding(TextProperty);
var path = binding?.Path;

您可以根据需要对其进行条件化;

alias