App Engine Python SDK  v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
Public Member Functions | List of all members
google.appengine.ext.blobstore.blobstore._GqlQuery Class Reference
Inheritance diagram for google.appengine.ext.blobstore.blobstore._GqlQuery:
google.appengine.ext.db.GqlQuery google.appengine.ext.db._BaseQuery

Public Member Functions

def __init__
 
- Public Member Functions inherited from google.appengine.ext.db.GqlQuery
def __init__
 
def is_keys_only
 
def projection
 
def is_distinct
 
def bind
 
def run
 
- Public Member Functions inherited from google.appengine.ext.db._BaseQuery
def __init__
 
def is_keys_only
 
def projection
 
def is_distinct
 
def run
 
def __iter__
 
def __getstate__
 
def get
 
def count
 
def fetch
 
def index_list
 
def cursor
 
def with_cursor
 
def __getitem__
 

Detailed Description

GqlQuery class that explicitly sets model-class.

This does the same as the original db.GqlQuery class except that it does
not try to find the model class based on the compiled GQL query.  The
caller instead provides the query with a model class to use for construction.

This class is required for compatibility with the current db.py query
mechanism but will be removed in the future.  DO NOT USE.

Constructor & Destructor Documentation

def google.appengine.ext.blobstore.blobstore._GqlQuery.__init__ (   self,
  query_string,
  model_class,
  args,
  kwds 
)
Constructor.

Args:
  query_string: Properly formatted GQL query string.
  model_class: Model class from which entities are constructed.
  *args: Positional arguments used to bind numeric references in the query.
  **kwds: Dictionary-based arguments for named references.

The documentation for this class was generated from the following file: