I wrote the code
ORM::factory('cds')->find_all(1, 2);
It returns the whole string. But according to the documentation, it should return 2 rows. what is wrong in the code? http://docs.kohanaphp.com/libraries/orm
For Kohana v3, a valid way to fulfill the constraint is:
ORM::factory('cds')->limit(2)->find_all();
Source: https://habr.com/ru/post/1348073/More articles:grails cannot load jar from maven repo - maven-2What is the advantage of using an interface? - c #C # how to set textbox property in form from another class? - objectNesting five conditional statements - javaref string [] memory leak using NET / COM interop - c #Shared folder between two sites? - c #How can I access xaml silverlight applications from a browser? - visual-studio-2010How to check network status in iphone app? - objective-cHow to show Django admin change list View children with foreign key? - djangoWhat would be the most efficient method for storing / updating Interval-based data in SQL? - performanceAll Articles