Commit ffaf2bd2 authored by Alex Ne's avatar Alex Ne

public function fetchColumn($column_number = 0)

parent ea1fcfbf
......@@ -73,6 +73,10 @@ class PDOStatement {
/**
* @return mixed
*/
public function fetchColumn($column_number = 0) {
return $this->prepare->fetchColumn($column_number);
}
public function rowCount() {
return $this->prepare->rowCount();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment