मुझे पता है कि यह प्रश्न प्राचीन है, लेकिन अभी भी 5.2.4 के साथ काम करने और यह त्रुटि प्राप्त करने के लिए, आप इस समस्या के आसपास काम करने के लिए एक नया mysql पीडीओ ऑब्जेक्ट बनाने पर विचार कर सकते हैं।
मैं अभी भी अपने dev सर्वर पर 5.2.4 का उपयोग करता हूं ताकि वर्डप्रेस प्लगइन्स के विकास के लिए पिछड़ा संगतता सुनिश्चित हो सके।
नीचे प्रक्रियात्मक कॉल के चारों ओर एक रैपर है जिसका उपयोग मैं 5.2.4 (मेरे देव सर्वर पर चलाने) में प्रक्रियाओं को सफलतापूर्वक कॉल करने के लिए करता हूं, जो आम तौर पर मुझे त्रुटि देता है, और मेरा उत्पादन सर्वर (जो एक नया संस्करण चलाता है त्रुटि नहीं देता है)।
इसका वर्डप्रेस विशिष्ट है, लेकिन सीधे PHP का उपयोग करके इसे संशोधित करना मुश्किल नहीं होगा।
/*
* Need to cache connection so we don't keep creating connections till we hit max.
*/
private $_dbhCache=null;
/**
* mySQL Call Proc
*
* Provides a wrapper around calling a mySQL stored procedure to ensure against a 5.2.4 bug that
* causes procedure calls to fail.
* Error:'can't return a result set in the given context'
*
* references:
* http://stackoverflow.com/questions/1200193/cant-return-a-result-set-in-the-given-context
* http://php.net/pdo_mysql#69592 //i got empty result set but pointed me in the right direction
* http://php.net/pdo_mysql#80306 //this worked, but returned 0-indexed and assoc, i edited it so it only returns assoc mimicking $wpdb->get_results(
* http://www.php.net/manual/en/pdo.connections.php
* http://www.php.net/manual/en/pdostatement.fetch.php explains about FETCH_ASSOC
*
* @param string $proc The mySQL stored procedure string, including paramaters, but without the call statement. e.g.: "my_procedure_name('my_paramater')";
* @return string The results of the procedure call
*/
public function mySQLCallProc($proc) {
global $wpdb;
$query = "call $proc";
try {
/*
* Attempt to call the procedure normally.
*
*/
$query_result = $wpdb->get_results($query, ARRAY_A);
/*
* Check for a database error
* and throw an exception if one is found.
* We can then attempt it again using a workaround.
*/
if ($wpdb->last_error !== '') {
throw new Exception('Database Error While Calling Procedure');
}
} catch (Exception $e) {
try {
/*
* Create a PDO Object for the connection
*/
if (is_null($this->_dbhCache)) {
$dbh = new PDO('mysql:host=' . DB_HOST . ';port=' . DB_HOST . ';dbname=' . DB_NAME, DB_USER, DB_PASSWORD, array(PDO::ATTR_PERSISTENT => true));
$this->_dbhCache=$dbh ;
}else{
$dbh = $this->_dbhCache;
}
/*
* Prepare and call the procedure.
*/
$stmt = $dbh->prepare("call $proc");
$stmt->execute();
/*
* fetch all rows into an associative array.
*/
$query_result = $stmt->fetchAll(PDO::FETCH_ASSOC); //FETCH_ASSOC gets results as an assoc array. without it, you'll receive both assoc and 0-indexed array
} catch (PDOException $e) {
print "Error!: " . $e->getMessage() . "<br/>";
die();
}
}
return ($query_result);
}
आपकी सटीकता के लिए धन्यवाद, आपकी बहुत अच्छी सलाह। – Farid
क्या यह समस्या 5.2.17 में वापस आ सकती है? मुझे एक ही त्रुटि मिल रही है लेकिन CentOS PHP बाद के संस्करण। – Clutch
शायद कुछ अन्य समस्याएं जैसे कि मुझे xammp और windows – Sydwell