Home | Trees | Indices | Help |
|
---|
|
object --+ | interface.OpenIDStore --+ | SQLStore --+ | MySQLStore
This is a MySQL-based specialization of SQLStore
.
Uses InnoDB tables for transaction support.
To create an instance, see SQLStore.__init__
. To create the tables it will
use, see SQLStore.createTables
.
|
|||
blobDecode(self,
blob) Convert a blob as returned by the SQL engine into a str object. |
|||
Inherited from Inherited from Inherited from |
|
|||
create_nonce_sql = '\n CREATE TABLE %(nonces)s\n (\n nonce CHAR(8) UNIQ...
|
|||
create_assoc_sql = '\n CREATE TABLE %(associations)s\n (\n server_url B...
|
|||
create_settings_sql = '\n CREATE TABLE %(settings)s\n (\n setting VARCHAR(...
|
|||
create_auth_sql = 'INSERT INTO %(settings)s VALUES ("auth_key", %%s);'
|
|||
get_auth_sql = 'SELECT value FROM %(settings)s WHERE setting = "aut...
|
|||
set_assoc_sql = 'REPLACE INTO %(associations)s VALUES (%%s, %%s, %%s...
|
|||
get_assocs_sql = 'SELECT handle, secret, issued, lifetime, assoc_type...
|
|||
get_assoc_sql = 'SELECT handle, secret, issued, lifetime, assoc_type...
|
|||
remove_assoc_sql = 'DELETE FROM %(associations)s WHERE server_url = %%s...
|
|||
add_nonce_sql = 'REPLACE INTO %(nonces)s VALUES (%%s, %%s);'
|
|||
get_nonce_sql = 'SELECT * FROM %(nonces)s WHERE nonce = %%s;'
|
|||
remove_nonce_sql = 'DELETE FROM %(nonces)s WHERE nonce = %%s;'
|
|||
Inherited from Inherited from |
|
|||
Inherited from |
|
Convert a blob as returned by the SQL engine into a str object. str -> str
|
|
create_nonce_sql
|
create_assoc_sql
|
create_settings_sql
|
create_auth_sql
|
get_auth_sql
|
set_assoc_sql
|
get_assocs_sql
|
get_assoc_sql
|
remove_assoc_sql
|
add_nonce_sql
|
get_nonce_sql
|
remove_nonce_sql
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0alpha3 on Fri Dec 8 13:26:20 2006 | http://epydoc.sourceforge.net |