Ver Mensaje Individual
  #5 (permalink)  
Antiguo 07/05/2011, 09:01
RatoN7
 
Fecha de Ingreso: marzo-2010
Mensajes: 71
Antigüedad: 14 años, 8 meses
Puntos: 24
Respuesta: Problema consulta get

Hola,

Intenta poner un $this->db->flush_cache() al comenzar la funcion del modelo, algo asi:
Código PHP:
Ver original
  1. public function get_delivery_price() {
  2.     $this->db->flush_cache();
  3.     $this->db->select('delivery_price')->from('delivery_price_table');
  4.     $query = $this->db->get();
  5.     return $query->row()->delivery_price;
  6. }

Entre tantas consultas tal vez se filtro un where.

Mas info: Active Record Caching

Saludos