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



eholz1 wrote:
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
.



Relevant Pages

  • Re: mysql connection through ssl tunnel
    ... I'd like to allow the application server to access mysql ... through an SSH tunnel. ... or simply use SSL connections to the mysql ...
    (freebsd-questions)
  • Calling a stored procedure with output parameters using mysqli
    ... and I'm trying to call a MySQL stored procedure (using ... mysqli) that has both input and output parameters. ... passing in the relevant params, but calling the output params is ... I've created the following sproc in MySQL: ...
    (comp.lang.php)