Home | Trees | Index | Help |
|
---|
Package openid :: Package store :: Module sqlstore :: Class MySQLStore |
|
object
--+ |OpenIDStore
--+ |SQLStore
--+ | MySQLStore
This is a MySQL-based specialization of
.SQLStore
Uses InnoDB tables for transaction support.
To create an instance, see
. To create the
tables it will use, see SQLStore.__init__
.SQLStore.createTables
Method Summary | |
---|---|
Convert a blob as returned by the SQL engine into a str object. | |
Inherited from SQLStore :
__init__ ,
__getattr__ ,
blobEncode ,
cleanupAssociations ,
cleanupNonces ,
createTables ,
getAssociation ,
removeAssociation ,
storeAssociation ,
txn_cleanupAssociations ,
txn_cleanupNonces ,
txn_createTables ,
txn_getAssociation ,
txn_removeAssociation ,
txn_storeAssociation ,
txn_useNonce ,
useNonce
Inherited from OpenIDStore :
cleanup
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|
Class Variable Summary | |
---|---|
str |
add_nonce_sql = 'INSERT INTO %(nonces)s VALUES (%%s, %%s...
|
str |
clean_assoc_sql = 'DELETE FROM %(associations)s WHERE is...
|
str |
clean_nonce_sql = 'DELETE FROM %(nonces)s WHERE timestam...
|
str |
create_assoc_sql = '\n CREATE TABLE %(associations)s\...
|
str |
create_nonce_sql = '\n CREATE TABLE %(nonces)s (\n ...
|
str |
create_settings_sql = '\n CREATE TABLE %(settings)s\n...
|
NoneType |
exceptions = None |
str |
get_assoc_sql = 'SELECT handle, secret, issued, lifetime...
|
str |
get_assocs_sql = 'SELECT handle, secret, issued, lifetim...
|
str |
get_expired_sql = 'SELECT server_url FROM %(associations...
|
str |
remove_assoc_sql = 'DELETE FROM %(associations)s WHERE s...
|
str |
set_assoc_sql = 'REPLACE INTO %(associations)s VALUES (%...
|
Inherited from SQLStore :
associations_table ,
nonces_table ,
settings_table
|
Method Details |
---|
blobDecode(self, blob)Convert a blob as returned by the SQL engine into a str object. str -> str
|
Class Variable Details |
---|
add_nonce_sql
|
clean_assoc_sql
|
clean_nonce_sql
|
create_assoc_sql
|
create_nonce_sql
|
create_settings_sql
|
exceptions
|
get_assoc_sql
|
get_assocs_sql
|
get_expired_sql
|
remove_assoc_sql
|
set_assoc_sql
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Fri Dec 14 16:10:52 2007 | http://epydoc.sf.net |