}
/**
+ * Set the SQL table name to use for the current scope's share storage.
+ *
+ * @var string $table The table name
+ */
+ public function setTable($table)
+ {
+ $this->_table = $table;
+ }
+
+ /**
* Get storage table
*
* @return string
return $this->_table;
}
+ public function setStorage(Horde_Db_Adapter $db)
+ {
+ $this->_db = $db;
+ }
+
/**
*
* @return Horde_Db_Adapter
}
/**
- * Set the SQL table name to use for the current scope's share storage.
- *
- * @var string $table The table name
- */
- public function setShareTable($table) {
- $this->_table = $table;
- }
-
- public function setStorage(Horde_Db_Adapter $db)
- {
- $this->_db = $db;
- }
-
- /**
* Utility function to convert from the SQL server's charset.
*/
protected function _fromDriverCharset($data)