Book navigationUser login |
computerBugs with googleappengine under macThe urlfetch_stub.py has bug. Replaced the original one by the attached one:
Python source directory for GoogleAppEngineLauncherIt is located at: /Applications/GoogleAppEngineLauncher.app/ if you install GoogleAppEngineLaucher.app under /Applications
GQL tipTip: Query filters do not have an explicit way to match just part of a string value, but you can fake a prefix match using inequality filters: db.GqlQuery("SELECT * FROM MyModel WHERE prop >= :1 AND prop < :2", "abc", "abc" + "\xEF\xBF\xBD") This matches every MyModel entity with a string property prop that begins with the characters abc. The byte string "\xEF\xBF\xBD" represents the largest possible Unicode character. When the property values are sorted in an index, the values that fall in this range are all of the values that begin with the given prefix.
|
SearchActive forum topics |
Recent comments
26 weeks 2 days ago
26 weeks 3 days ago
26 weeks 3 days ago
28 weeks 5 days ago