Dwight Watson's blog

Escaping variables in raw SQL queries in Laravel 4

This blog post was originally published a little while ago. Please consider that it may no longer be relevant or even accurate.

Though Laravel offers some great methods for using question-mark placeholders and named placeholders when building raw queries, we had an instance where one large query we had just could not be converted to the appropriate format for this function. Futhermore, we were not able to build it using the query builder. It seems like Laravel 3 had a function called DB::escape(), but that is no longer available in Laravel 4.

After trawling the web, the best solution I've found is to use the quote method from the PDO object. You can get the PDO object straight from the DB façade and use it to quote variables one by one as you need.

DB::getPdo()->quote($variable)

If anyone has a better solution though, please don't hesitate to leave a comment!

A blog about Laravel & Rails by Dwight Watson;

Picture of Dwight Watson

Follow me on Twitter, or GitHub.