/**
  *
  * Gets a PDO attribute value.
  *
  * @param mixed $attribute The PDO::ATTR_* constant.
  *
  * @return mixed The value for the attribute.
  *
  */
 public function getAttribute($attribute)
 {
     return $this->pdo->getAttribute($attribute);
 }