/*##########################################################################
+ # Quoting
+ ##########################################################################*/
+
+ /**
+ * Quotes a string, escaping any special characters.
+ *
+ * @param string $string
+ * @return string
+ */
+ public function quoteString($string)
+ {
+ return $this->_read->quoteString($string);
+ }
+
+
+ /*##########################################################################
# Database Statements
##########################################################################*/