cast($value, $type); } if ($type === PDO::PARAM_LOB) { $this->_statement->bindParam($column, $value, $type, 0, PDO::SQLSRV_ENCODING_BINARY); } else { $this->_statement->bindValue($column, $value, $type); } } }