> I am currently working on a query which is meant to search the database 
and return the flights that the users wants..

I've never seen a query built with the is operator before, chances are that 
it's not supported. I'd try instead:

query1 = db.Flight.DepartureDate==request.vars.DepartureDate
query2 = db.Flight.ArrivalLocation==request.vars.ArrivalLocation
query3 = db.Flight.DepartureDate==request.vars.DepartureDate
query4 = db.Flight.ArrivalDate==request.vars.ArrivalDate

-- 



Reply via email to