зеркало из https://github.com/nextcloud/server.git
Merge pull request #6796 from owncloud/statementwrapper-bindparam
Add bindParam to the database statement wrapper
This commit is contained in:
Коммит
8991e4505a
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче