return FALSE if driver doesn't support quoting (this is what docu says)

also fixed PECL bug #6365
This commit is contained in:
Antony Dovgal 2006-03-23 19:01:46 +00:00
parent 3b1cb0e500
commit 1ad4dd8795

View File

@ -1036,6 +1036,7 @@ static PHP_METHOD(PDO, quote)
RETURN_STRINGL(qstr, qlen, 0);
}
PDO_HANDLE_DBH_ERR();
RETURN_FALSE;
}
/* }}} */