Ben saat son çift için bu işi yapmak için çalışıyorum. Ben get_log_entries adlandırılan basit bir saklı yordam vardır:
CREATE DEFINER=`root`@`localhost` PROCEDURE `get_log_entries`(p_min_id INT)
BEGIN
SET p_min_id = IFNULL(p_min_id, -1);
SELECT * FROM db_log WHERE item_id > p_min_id;
END
Ölü basit ve iki sütun sonuçları verir: item_id (int) ve log_description (varchar).
Ben MDB2 nesnesi kullanarak bu yürütmeye çalışıyor, ancak bugüne kadar hiçbir şans duyuyorum. İşte bunu yapmak için çalışıyor kod:
$conn = MDB2::factory('mysql://myUser:myPassword@localhost/my_db');
if (PEAR::isError($conn)) {
die ("Cannot connet to DB(10): " . $conn->getMessage());
}
// loading the Function module
$conn->loadModule('Function');
$params = array('null');
$result = $conn->executeStoredProc('get_log_entries', $params);
if (PEAR::isError($result)) {
$msg = $result->getMessage() . "<br /><br />" . $result->getUserInfo();
die ($msg);
}
Bu noktada bu güzel hata mesajı ile gösterir:
"_doQuery: [Error message: Could not execute statement] [Last executed query: CALL get_log_entries()] [Native code: 1312] [Native message: PROCEDURE wh_search.get_log_entries can't return a result set in the given context]"
Now I have a couple of questions:
1. Is it even possible to execute SPs using MDB2 and return result sets?
2. Or is it better to write a wrapper class for "native" PHP-MySQL functions myself?
Thanks!