00001 <?php
00002
00003
00004
00005
00006
00007
00008 class DBResultSetMysql implements IDBResultSet {
00009
00010
00011
00012
00013
00014 protected $result_handle = null;
00015
00016
00017
00018
00019
00020 protected $status = null;
00021
00022 public function __construct($result_handle, $status) {
00023 $this->result_handle = $result_handle;
00024 $this->status = $status;
00025 }
00026
00027 public function __destruct() {
00028 $this->close();
00029 }
00030
00031
00032
00033
00034
00035
00036 public function close() {
00037 if ($this->result_handle) {
00038 mysql_free_result($this->result_handle);
00039 }
00040 $this->result_handle = null;
00041 }
00042
00043
00044
00045
00046
00047
00048 public function get_column_count() {
00049 if ($this->result_handle) {
00050 return mysql_num_fields($this->result_handle);
00051 }
00052 return false;
00053 }
00054
00055
00056
00057
00058
00059
00060 public function get_row_count() {
00061 if ($this->result_handle) {
00062 return mysql_num_rows($this->result_handle);
00063 }
00064 return 0;
00065 }
00066
00067
00068
00069
00070
00071
00072 public function fetch() {
00073 if ($this->result_handle) {
00074 return mysql_fetch_assoc($this->result_handle);
00075 }
00076 return false;
00077 }
00078
00079
00080
00081
00082
00083
00084 public function get_status() {
00085 return $this->status;
00086 }
00087 }