View Single Post
  #2 (permalink)  
Old 10-30-2007, 05:48 PM
clone45 clone45 is offline
Junior Member
 
Join Date: Jul 2007
Posts: 11
Default

Nevermind! I figured it out.
$sql = "SELECT Count(*) as row_count FROM $table_name $where";

$this->db->setFetchMode(DB_FETCHMODE_ASSOC);
$row_count = $this->db->getOne($sql);
Reply With Quote