From what I’ve read, this is how I should check for any records…
v = PC_Applications.all().filter('column =', value)
if not v:
return False
But this returns an error!
IndexError: The query returned fewer than 1 results
Any ideas to doing this? I’ve read that .count() is a bad option. I’m new to Python and App Engine so thank you for any patience!
From App Engine, Query Class get()