Removing redundant value() function (ticket #1066)

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3183 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
dho 2006-06-25 11:11:32 +00:00
parent 7e53b3909d
commit 4ead20e052

View file

@ -224,18 +224,6 @@ class DboAdodb extends DboSource{
return $fields;
}
/**
* Returns a quoted and escaped string of $data for use in an SQL statement.
*
* @param string $data String to be prepared for use in an SQL statement
* @return string Quoted and escaped
*
* @todo To be implemented.
*/
function value($data) {
return $this->_adodb->Quote($data);
}
/**
* Returns a formatted error message from previous database operation.
*