Example #1
0
 /**
  * Binds a parameter to the specified variable name.
  *
  * @param mixed $parameter Name the parameter, either integer or string.
  * @param mixed $variable  Reference to PHP variable containing the value.
  * @param mixed $type      OPTIONAL Datatype of SQL parameter.
  * @param mixed $length    OPTIONAL Length of SQL parameter.
  * @param mixed $options   OPTIONAL Other options.
  * @return bool
  * @throws \Zend\Db\Statement\Exception
  */
 public function bindParam($parameter, &$variable, $type = null, $length = null, $options = null)
 {
     if($this->_queryProfile !== null) {
         $this->_queryProfile->bindParam($parameter, $variable);
     }
     return true;
 }