summaryrefslogtreecommitdiffstats
path: root/Auth/OpenID/SQLiteStore.php
diff options
context:
space:
mode:
authortailor <cygnus@janrain.com>2007-02-14 22:37:26 +0000
committertailor <cygnus@janrain.com>2007-02-14 22:37:26 +0000
commita01e702b8a34ec0b26ff72e2d5954e54b4880dd7 (patch)
treee31cc1e022422a51a40ffb1a814bf5a9704e0f00 /Auth/OpenID/SQLiteStore.php
parentda2ec5feccef42c0004bfde3a286d00336a9b052 (diff)
downloadphp-openid-a01e702b8a34ec0b26ff72e2d5954e54b4880dd7.zip
php-openid-a01e702b8a34ec0b26ff72e2d5954e54b4880dd7.tar.gz
php-openid-a01e702b8a34ec0b26ff72e2d5954e54b4880dd7.tar.bz2
[project @ Removed settings table and auth key code from stores]
Diffstat (limited to 'Auth/OpenID/SQLiteStore.php')
-rw-r--r--Auth/OpenID/SQLiteStore.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/Auth/OpenID/SQLiteStore.php b/Auth/OpenID/SQLiteStore.php
index 81f7ce9..130f8fa 100644
--- a/Auth/OpenID/SQLiteStore.php
+++ b/Auth/OpenID/SQLiteStore.php
@@ -28,16 +28,6 @@ class Auth_OpenID_SQLiteStore extends Auth_OpenID_SQLStore {
"secret BLOB(128), issued INTEGER, lifetime INTEGER, ".
"assoc_type VARCHAR(64), PRIMARY KEY (server_url, handle))";
- $this->sql['settings_table'] =
- "CREATE TABLE %s (setting VARCHAR(128) UNIQUE PRIMARY KEY, ".
- "value BLOB(20))";
-
- $this->sql['create_auth'] =
- "INSERT INTO %s VALUES ('auth_key', ?)";
-
- $this->sql['get_auth'] =
- "SELECT value FROM %s WHERE setting = 'auth_key'";
-
$this->sql['set_assoc'] =
"INSERT OR REPLACE INTO %s VALUES (?, ?, ?, ?, ?, ?)";