On Mon, Nov 30, 2009 at 12:36 PM, david <[email protected]> wrote: > _id = self.request.get("id") > _latitud = int(self.request.get("latitud")) > query_str = "SELECT * FROM Posicion WHERE id = '" + _id +"'" > posicion = db.GqlQuery (query_str)
Just word of warning, you are setting yourself up for a major gql injection attack with that code, clean it up, do not even use code like that for testing or you can forget about it. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
