El Mon, 9 Jan 2017 12:17:19 -0800 (PST) LoveWeb2py <[email protected]> escribió:
> Hello, > > > I'm trying to do a simple query against a sqlite3 database where the > values are stored as 0's and 1's > > All i want to do is select all values that are True or False > > According to the book this should work: > > db(db.table.field==True).select() > > and that would return rows > > however, it's returning Rows(0) (nothing) > > I verified in the database that they are being stored as True/False > through appadmin > > Any thoughts on why this isn't working? > Hi, this has been a headache to me in a new project, since I'm re structuring the database and migrating data from an existing project (some crazy thing some did in java), and booleans where 0's and 1's, when I tried to run queries with these parameters didn't work, just like in your case, then I realized that web2py queries are effective with 'T' and 'F' for boolean values and now everything works. So, is this the expected behaviour?, am I/are we missing something about DAL?. Just for the record, I'm not that smart, when imported backup from table to db booleans were 0 and 1, but after editing the table in CSV format and restoring data to table noticed the difference and booleand were converted to T and F respectively. Hope it helps. Marco. -- 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]. For more options, visit https://groups.google.com/d/optout.

