mysqli - Do I really need to do $result->close(); & $mysqli->close(); ?

Posted by James on Stack Overflow See other posts from Stack Overflow or by James
Published on 2010-05-21T04:07:43Z Indexed on 2010/05/21 4:10 UTC
Read the original article Hit count: 110

Filed under:
|
|

Just started using mysqli. If I'm working with small data sets on small websites (traffic-wise), do I really need to use these all the time?

$result->close(); $mysqli->close();

also, for someone doing custom php & mysql work, without a framework, is mysqli the general preferred way of interacting with mysql?

© Stack Overflow or respective owner

Related posts about mysql

Related posts about mysqli