Evet, bu ancak daha önce sordum senaryolar işte gidiyor, benim için geçerli değil, bir çok sorulan biliyorum ...
In essence, I'm looking to create a function (in a class) that runs an SQL query on a database, then provides the result as a MySQLi result object. It's not just 'SELECT' queries either, but I don't really mind having a second function for it if need be. The only issue I have here is implementing prepared (or parametrized) statements into the mix.
Şimdiye kadar hiç çalışmıyor bu pasajı var:
function byQuery($query, $types, $params)
{
$conn = new mysqli('localhost', '<snip>', '<snip>', '<snip>');
$sql = $conn->prepare($query);
$sql->bind_param($types, $params);
$sql->execute();
$result = $sql->store_result();
print_r($sql->store_result());
}
Print_r ($ sql-> store_result ()); Bu lanet sorgunun dışında bir şey almak benim girişimi oldu. Ben hataları ya da bir şey almak değil, ama ne geri alıyorum MySQL nesne değildir değilim.
Bu aynı soru daha önce sorulmuş eğer Üzgünüm, ben sadece aslında ben şu anda ne yapıyorum bilmiyorum.