Home | Trees | Indices | Help |
---|
|
object --+ | Output_Bind
Base output binding class.
The constructor takes at least 2 arguments The first is the object in which to set the value. The second is the name of the parameter to set in the object.
Internally, the Statement object calls Output_Bind.load on all bound outputs during each call to fetch.
|
|||
|
__init__(...) x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
||
|
__new__(T,
S,
...) Returns a new object with type S, a subtype of T... |
||
Inherited from |
|
|||
|
__pyx_vtable__ = <PyCObject object at 0x852e878>
|
|
|||
|
_buffer The location where the data is stored. |
||
|
_buffer_length The size of memory allocated for _buffer. |
||
|
_buffer_type The type of buffer (from enum_field_types). |
||
|
_is_unsigned Whether or not the value is unsigned. |
||
|
_what The variable name to set in _who with the value. |
||
|
_who The object what wants the value. |
||
|
error = <member 'error' of 'mysql.stmt.bind_out.Output_Bind'... Whether or not there was an error retrieving the value. |
||
|
is_null = <member 'is_null' of 'mysql.stmt.bind_out.Output_Bin... Whether or not the value is null. |
||
|
length = <member 'length' of 'mysql.stmt.bind_out.Output_Bind... The length of the value as reported by MySQL. |
|
|||
Inherited from |
|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
|
|
|
__pyx_vtable__
|
|
_bufferThe location where the data is stored. (Part of MYSQL_BIND structure.) (C only.) |
_buffer_lengthThe size of memory allocated for _buffer. This is set in __init__ by the user. (Part of MYSQL_BIND structure.) (C only.) |
_buffer_typeThe type of buffer (from enum_field_types). (Part of MYSQL_BIND structure.) (C only.) |
_is_unsignedWhether or not the value is unsigned. This should be set to 1 in the __new__ method if necessary. (Part of MYSQL_BIND structure.) (C only.) |
_whatThe variable name to set in _who with the value. This is set in __init__. (C only.) |
_whoThe object what wants the value. This is set in __init__. (C only.) |
errorWhether or not there was an error retrieving the value. (Part of MYSQL_BIND structure.) (Read only.)
|
is_nullWhether or not the value is null. (Part of MYSQL_BIND structure.) (Read only.)
|
lengthThe length of the value as reported by MySQL. (Part of MYSQL_BIND structure.) (Read only.)
|
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0alpha3 on Sun Nov 12 20:01:36 2006 | http://epydoc.sourceforge.net |