depecheSoul
depecheSoul

Reputation: 956

Filter all columns in Python, Google App Engine

I have made a small db.Model and I want to search all columns of db.Model for some word.

I have tried doing this on my own but it wont work:

Uni.filter("* =", word)

db.GqlQuery("SELECT * FROM Uni WHERE *=:1", word)

I am new to Python and Models.

Upvotes: 1

Views: 72

Answers (1)

Daniel Roseman
Daniel Roseman

Reputation: 599628

You can't do that.

You might try using the new full-text search API.

Upvotes: 4

Related Questions