![]() |
using mysqli
Hi right now this script uses
PHP Code:
i would like to use PHP Code:
I hope this is an easy conversion im almost afraid to ask this lol. By chance is this just simply changing the class db to use PHP Code:
I dont suppose that the old mysql stuff works if you use mysqli right? |
Nevermind, i was sitting here thinking having coffee and it hit me, that means i have to change all my mysql_query to mysqli_query, thats way too much ill do that one day but not now.
ill just use mysql_affected_rows instead. what i was trying to do is do an error trap but the if not !result i could not get to flag on error so i guess for update you have to use affected rows right? just fyi this is what i did PHP Code:
|
mysql_affected_rows will result in any of the actual changes (potentially more; I believe that affected changes will also deal with the cascade count changes). Inserts, deletes and updates will all require affected rows to determine changes; selects, describes, etc, would make use of num_rows. MySQLi has a procedural equivalence to mysql, but they are not compatible together. Signatures are different between the libraries. MySQL usually allows the connection as an option (since for whatever reason they've globalized the resource), but it would be last argument. MySQLi requires the connection as its first argument or handled as an object.
This is why with even procedural calls I recommend abstract functionality to stand between. You can't just swap out your storage drivers, you need to rewrite any code that uses the old storage drivers. If you had written the abstract functionality required, then you'd simply update a (hopefully) single inclusion to point at the file with the new functionality instead of the old. |
| All times are GMT +1. The time now is 06:32 PM. |
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.