Can I enable MySQL Native Driver (mysqlnd)?

Possible duplicate:
Call undefined method mysqli_stmt :: get_result

My web host has PHP 5.3.10, and I use it mysqli, but some functions, such as get_result(), do not work because it needs to mysqlnd.

I did some tests and found that it is mysqlndnot used. It is possible to enable it or you need to reinstall PHP (I can not do this because it is web hosting).

I do not want to change my code to work without it.

+3
source share
1 answer

mysqldndis a library that provides a MySQL connection to mysql_*, mysqli_*and PDO functions / methods.

mysqlnd, libmysql; : .
, libmysql mysqlnd - PHP (, , mysqli ); , .

, - , , libmysql; .


, , , ( , , , ), , , "" .

+8

All Articles