Home | Trees | Indices | Help |
---|
|
object --+ | DB
|
|||
|
|||
|
|||
object |
|
||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from |
|
|||
Inherited from |
|
|
Get the parameter style for the underlying DB API module. The result of this method call corresponds exactly to the underlying DB API module's 'paramstyle' attribute. It will have one of the following values:
|
Returns an object representing the given string of bytes as a BLOB. This method is equivalent to the module-level Binary() method in an underlying DB API-compliant module.
|
Returns an object representing the specified date. This method is equivalent to the module-level Date() method in an underlying DB API-compliant module.
|
Returns an object representing the date secs seconds after the epoch. For example:
import time
d = db.DateFromTicks(time.time())
This method is equivalent to the module-level DateFromTicks() method in an underlying DB API-compliant module.
|
Returns an object representing the specified time. This method is equivalent to the module-level Time() method in an underlying DB API-compliant module.
|
Returns an object representing the time 'secs' seconds after the epoch. For example:
import time
d = db.TimeFromTicks(time.time())
This method is equivalent to the module-level TimeFromTicks() method in an underlying DB API-compliant module.
|
Returns an object representing the specified time. This method is equivalent to the module-level Timestamp() method in an underlying DB API-compliant module.
|
Returns an object representing the date and time secs seconds after the epoch. For example:
import time
d = db.TimestampFromTicks(time.time())
This method is equivalent to the module-level TimestampFromTicks() method in an underlying DB API-compliant module.
|
|
|
|
|
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Mon Mar 14 15:21:05 2016 | http://epydoc.sourceforge.net |