| 1 | <?php |
||
| 19 | class MySqlBuilder extends GenericBuilder |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | * |
||
| 24 | * @param Column $column |
||
| 25 | * |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | public function writeColumnName(Column $column) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | * |
||
| 44 | * @param Table $table |
||
| 45 | * |
||
| 46 | * @return string |
||
| 47 | */ |
||
| 48 | public function writeTableName(Table $table) |
||
| 52 | |||
| 53 | /** |
||
| 54 | * {@inheritdoc} |
||
| 55 | * |
||
| 56 | * @param $alias |
||
| 57 | * |
||
| 58 | * @return string |
||
| 59 | */ |
||
| 60 | public function writeTableAlias($alias) |
||
| 64 | |||
| 65 | /** |
||
| 66 | * {@inheritdoc} |
||
| 67 | * |
||
| 68 | * @param $alias |
||
| 69 | * |
||
| 70 | * @return string |
||
| 71 | */ |
||
| 72 | public function writeColumnAlias($alias) |
||
| 76 | |||
| 77 | /** |
||
| 78 | * @param $string |
||
| 79 | * @param string $char |
||
| 80 | * |
||
| 81 | * @return string |
||
| 82 | */ |
||
| 83 | protected function wrapper($string, $char = '`') |
||
| 91 | } |
||
| 92 |