nested_select = db(db.address.address.contains('boulevard') ).*_select*
(db.address.id)
*result in browser *
SELECT "address"."id" FROM "address" WHERE (LOWER("address"."address") LIKE
'%boulevard%' ESCAPE '\');
rows = db(db.customer.address.belongs(nested_select) ).select()
*result in browser*
nothing (no error occured but the resuls is not expected)
select = db(db.address.address.contains('boulevard') ).*select*
(db.address.id)
*result in browser (only this work as expected)*
return db.address.id
any idea ?
thanks
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
---
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/web2py/a32f6d73-7681-4e33-8a83-f76b5f3ef603n%40googlegroups.com.