Hello,

In my web application I simply want to get the bookmarked articles of a user
:

select * from articles G, selections S 
where G.id_art = S.art_id 
and S.member_id = 2 
and G.to_delete = 0;

I want to get the result in my model object which extends Zend db table,
"Article" 
(And I don't need the returned selections data of the query)

What is the usual way to do such a thing ?

Thank you !
-- 
View this message in context: 
http://www.nabble.com/Get-sql-results-in-my-Model-%28Zend_Db_Table%29-tp14370287s16154p14370287.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to