PHP MySQLi (mysqli_result) Available Methods -


I want to implement a special functionality in a MySQLi extension, but I do not want to do it if it is already Or mostly there. I have read the documentation well, and I am not sure whether this or similar functionality is built; Anyone know? $ db = new mysqli; $ Sql ​​= 'Choose whatever ...'; $ Obj = $ db- & gt; Fetch Update ($ sql); // Overwrite previous values ​​$ obj- & gt; Results ['first'] = 'John'; $ Obj- & gt; Results ['last'] = 'Smith'; $ Obj- & gt; Updates (); // save to db

Again, I can put together a lightweight extension which works very well; I just want to make sure that it is not already part of mysqli basis methods and I've only ignored it in the documentation. Thanks for the guidance!

This is not implemented in MySQLi, this is the reason why there are so many ORMs:)

Comments