Connecting Tech Pros Worldwide Forums | Help | Site Map

mysql vs. mysqli, how to call stored procedure from php

eholz1
Guest
 
Posts: n/a
#1: Feb 27 '07
Hello PHP Group,

Is there any advantages (or disadvantages) in using mysqli instead of
mysql (querys, connections to database, etc).

I am currently using mysql_connect, and things like this:
$result = @mysql_query("SELECT * FROM images3 WHERE id=" . $img . "
AND p=" .$p. "");

to access my database. I see that some people are using the
equivalent stuff but with the mysqli style, etc I know the 'i" stands
for "improved", Being new to this stuff, i wonder what the difference
might be.

Also, how do I call a stored procedure from PHP.

i have tried this, but I get errors: $result = @mysql_query("call
sp_max_records (100)");
this procedure returns the MAX(id) from my database.

Thanks for a great group - one of the most responsive.

eholz1


Sjoerd
Guest
 
Posts: n/a
#2: Feb 27 '07

re: mysql vs. mysqli, how to call stored procedure from php


eholz1 wrote:
Quote:
Is there any advantages (or disadvantages) in using mysqli instead of
mysql (querys, connections to database, etc).
Mysqli offers:
- Object-oriented interface
- Prepared statements
- Bound input and output parameters
- SSL connections
- Multi-query functions
- Designed to work with the version 4.1.3 or above of MySQL
Closed Thread