jerrygarciuh
jerrygarciuh

Reputation: 21988

Prepared statements possible when mysqli and PDO are not available?

Are PHP/mysql prepared statements possible when mysqli and PDO are not available? Are there working Pear solutions for this problem?

Upvotes: 0

Views: 163

Answers (1)

Tino van der Laan
Tino van der Laan

Reputation: 291

http://pear.php.net/manual/en/package.database.mdb2.intro-execute.php

That should contain all the information you need.

Otherwise, the standard mysql_* functions do not provide functionality for prepared statements.

Upvotes: 1

Related Questions