Phalcon php - Multiples joins -


when try add more 1 inner join in query have following error:

scanning error before '] join [] join [...' when parsing

here's code:

$query = mymodelhere::query()     ->innerjoin("model1")     ->innerjoin("model2")     ->limit(10)     ->execute(); 

someone had problem?

you can try use phql

anyway, report on github...probably it's bug


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -