Facile\DoctrineMySQLComeBack\Doctrine\DBAL\Statement::bindParam PHP Method

bindParam() public method

public bindParam ( string $name, mixed &$var, integer $type = PDO::PARAM_STR, integer | null $length = null ) : boolean
$name string
$var mixed
$type integer
$length integer | null
return boolean
    public function bindParam($name, &$var, $type = PDO::PARAM_STR, $length = null)
    {
        return $this->stmt->bindParam($name, $var, $type, $length);
    }