2011-08-19 21:18:59 -05:00
|
|
|
<?php namespace Laravel\DB\Query;
|
2011-08-19 20:12:39 -05:00
|
|
|
|
2011-08-19 21:18:59 -05:00
|
|
|
use Laravel\DB\Query;
|
2011-08-19 20:12:39 -05:00
|
|
|
|
2011-08-19 21:18:59 -05:00
|
|
|
class MySQL extends Query {
|
2011-08-19 20:12:39 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the keyword identifier wrapper for the connection.
|
|
|
|
|
*
|
|
|
|
|
* MySQL uses a non-standard wrapper
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2011-08-19 22:10:17 -05:00
|
|
|
public function wrapper()
|
|
|
|
|
{
|
|
|
|
|
return '`';
|
|
|
|
|
}
|
2011-08-19 20:12:39 -05:00
|
|
|
|
|
|
|
|
}
|