60 
 61 
 62 
 63 
 64 
 65 
 66 
 67 
 68 
 69 
 70 
 71 
 72 
 73 
 74 
 75 
 76 
 77 
 78 
 79 
 80 
     function _disconnect() {
         return @
mysql_close($this->connectId);
     }
 
     
/**
     * @param string $query
     * @return resource|true|false Example: resource on SELECT, true on DELETE, false on error
     * @access protected
     */
     
function _query(&$query) {
         echo
$show_error;
         return @
mysql_query($query, $this->connectId);
     }
 
     
/**
     * Modify limit query
     * @param string $query
     * @param int $offset
     * @param int $limit
     * @return string
     * @access public

View Full Source