__call__ ( *args, *kw )
Return a (possibly initialized) ICursor
Creates a new ICursor instance initialized with the passed
keyword arguments. If positional arguments are supplied,
they are passed to the new cursor's execute() method before
it is returned.
This method is the primary way of interacting with a connection;
either you'll pass positional arguments and receive an
initialized and iterable cursor, or you'll call with no arguments
or keywords only to receive a cursor that you can use to perform
more "low-level" interactions with the database.
|