Merge pull request #6796 from owncloud/statementwrapper-bindparam

Add bindParam to the database statement wrapper
remotes/origin/ldap_group_count
Thomas Müller 11 years ago
commit 8991e4505a
  1. 14
      lib/private/db/statementwrapper.php

@ -172,4 +172,18 @@ class OC_DB_StatementWrapper {
public function fetchOne($colnum = 0) {
return $this->statement->fetchColumn($colnum);
}
/**
* Binds a PHP variable to a corresponding named or question mark placeholder in the
* SQL statement that was use to prepare the statement.
*
* @param mixed $column Either the placeholder name or the 1-indexed placeholder index
* @param mixed $variable The variable to bind
* @param integer|null $type one of the PDO::PARAM_* constants
* @param integer|null $length max length when using an OUT bind
* @return boolean
*/
public function bindParam($column, &$variable, $type = null, $length = null){
return $this->statement->bindParam($column, $variable, $type, $length);
}
}

Loading…
Cancel
Save