AttributeError: 'SQLite' object has no attribute 'EQ'
How are you making your query map reduce?
| mytable.id | mytable.myvalue |
|---|---|
| 1 | abc |
| 2 | bcd |
| 3 | def |
| qa | : | <Query (LOWER(mytable.myvalue) LIKE '%a%' ESCAPE '\')> | ||||
| qb | : | <Query (LOWER(mytable.myvalue) LIKE '%b%' ESCAPE '\')> | ||||
| qc | : | <Query (LOWER(mytable.myvalue) LIKE '%c%' ESCAPE '\')> | ||||
| queries | : |
| ||||
| w | : |
|
|
How are you making your query map reduce?
query = reduce(lambda a, b: (a & b), queries)
--
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 web2py+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
db.mytable.id > 0
db(('1 = 1')).select(db.mytable.ALL)