Skip to content

Instantly share code, notes, and snippets.

@diogomachado
Created February 7, 2013 03:23
Show Gist options
  • Save diogomachado/4728141 to your computer and use it in GitHub Desktop.
Save diogomachado/4728141 to your computer and use it in GitHub Desktop.
Exemplo de query com ORM kohana 3.2
// Busca o último associado no banco
$associadoOrm = ORM::factory('associado')->limit(1)->order_by('id', 'DESC')->find();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment