spadefoot / kohana-orm-leap

An ORM module for the Kohana PHP framework that is designed to work with all major databases.
http://spadefoot.github.io/kohana-orm-leap/
100 stars 25 forks source link

Problem with building query with Oracle as database #13

Closed ekarlso closed 12 years ago

ekarlso commented 12 years ago

$b = DB_SQL::select()->from("DB_COPY"); $b->limit(5); echo $b->statement();

This just gives:

SELECT * FROM "DB_COPY";

Which is mostly useless.

spadefoot commented 12 years ago

I will add limit support for Oracle today in accordance with this article: http://www.oracle.com/technetwork/issue-archive/2006/06-sep/o56asktom-086197.html

ekarlso commented 12 years ago

When do you think that you will have this in place?

spadefoot commented 12 years ago

Just posted the code. Please let me know how it works for you.