News Feed
Jobs Feed
Sections




News Archive
Johannes Schluter's Blog:
Escaping from the statement mess
May 19, 2011 @ 09:30:45

In a new post to his blog Johannes Schluter suggests an alternative to using prepared statements in PHP applications using a database - creating a handler method that allows for dynamic queries as well as proper escaping of values.

Now prepared statements were a nice invention some 30 years ago abut they weren't meant for making things secure and so they do have some shortcomings: One issue is that preparing and executing a query adds a round-trip to the server where it then requires resources. [...] With prepared statements you first have to build the list of place holders (the exact amount of place holders (?) separated by a comma, without trailing comma) and then bind the values and mind the offsets when having other values - this typically becomes ugly code.

He includes the code for his alternative, a function using the mysqli extension to let you create dynamic SQL that still uses placeholders and proper escaping to prevent both SQL injection issues and resources problems caused by the multiple hops back to the database.

0 comments voice your opinion now!
prepared statement database alternative mysqli


blog comments powered by Disqus

Similar Posts

Chris Jones' Blog: PHP OCI8 1.3 RPM is now on ULN

Jim Plush's Blog: Do you use debug statements in PHP? Speed them up by 85%

Stoyan Stefanov's Blog: Reusing an existing database connection with MDB2

Zend Developer Zone: Work with XML Data in the Zend Framework

PHPMaster.com: Error Logging with MongoDB and Analog


Community Events











Don't see your event here?
Let us know!


release code unittest composer podcast framework language example introduction testing zendframework2 opinion conference development functional series object community tool interview

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework