Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
844 views
in Technique[技术] by (71.8m points)

php - CodeIgniter switching driver from mysql --> mysqli

I was reading this question: The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead

And it got me thinking that I should make the change from mysql to mysqli. It is a one character change in CodeIgniter so it isn't very hard :)

But is there anything I should look out for to spot any errors that can happen? Are there certain queries that are treated differently?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Are there certain queries that are treated differently?

No.

The MySQL and MySQLi extension are “drivers” that take care of the communication between PHP and the MySQL database server;

they do not change the range of SQL commands that the MySQL server understands.

So as long as the DB abstraction layer takes care of what PHP functions are to use for what purpose for you (and a framework like CI should most certainly do that), there is nothing to worry about in regard to the actual queries.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...