Skip to content
Snippets Groups Projects
Commit 8991e450 authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #6796 from owncloud/statementwrapper-bindparam

Add bindParam to the database statement wrapper
parents 1e84d6b1 504645cf
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment