compiler.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?php namespace System\DB\Query;
  2. class Compiler {
  3. /**
  4. * Build a SQL SELECT statement.
  5. *
  6. * @param Query $query
  7. * @return string
  8. */
  9. public static function select($query)
  10. {
  11. // ---------------------------------------------------
  12. // Add the SELECT, FROM, and WHERE clauses.
  13. // ---------------------------------------------------
  14. $sql = $query->select.' '.$query->from.' '.$query->where;
  15. // ---------------------------------------------------
  16. // Add the ORDER BY clause.
  17. // ---------------------------------------------------
  18. if (count($query->orderings) > 0)
  19. {
  20. $sql .= ' ORDER BY '.implode(', ', $query->orderings);
  21. }
  22. // ---------------------------------------------------
  23. // Add the LIMIT.
  24. // ---------------------------------------------------
  25. if ( ! is_null($query->limit))
  26. {
  27. $sql .= ' LIMIT '.$query->limit;
  28. }
  29. // ---------------------------------------------------
  30. // Add the OFFSET.
  31. // ---------------------------------------------------
  32. if ( ! is_null($query->offset))
  33. {
  34. $sql .= ' OFFSET '.$query->offset;
  35. }
  36. return $sql;
  37. }
  38. /**
  39. * Build a SQL INSERT statement.
  40. *
  41. * @param Query $query
  42. * @param array $values
  43. * @return string
  44. */
  45. public static function insert($query, $values)
  46. {
  47. // ---------------------------------------------------
  48. // Start the query. Add the table name.
  49. // ---------------------------------------------------
  50. $sql = 'INSERT INTO '.$query->table.' (';
  51. // ---------------------------------------------------
  52. // Wrap each column name in keyword identifiers.
  53. // ---------------------------------------------------
  54. $columns = array();
  55. foreach (array_keys($values) as $column)
  56. {
  57. $columns[] = $query->wrap($column);
  58. }
  59. // ---------------------------------------------------
  60. // Concatenate the column names and values.
  61. // ---------------------------------------------------
  62. return $sql .= implode(', ', $columns).') VALUES ('.$query->parameterize($values).')';
  63. }
  64. /**
  65. * Build a SQL UPDATE statement.
  66. *
  67. * @param Query $query
  68. * @param array $values
  69. * @return string
  70. */
  71. public static function update($query, $values)
  72. {
  73. // ---------------------------------------------------
  74. // Start the query. Add the table name.
  75. // ---------------------------------------------------
  76. $sql = 'UPDATE '.$query->table.' SET ';
  77. // ---------------------------------------------------
  78. // Wrap each column name in keyword identifiers.
  79. // ---------------------------------------------------
  80. $columns = array();
  81. foreach (array_keys($values) as $column)
  82. {
  83. $columns[] = $query->wrap($column).' = ?';
  84. }
  85. // ---------------------------------------------------
  86. // Concatenate the column names and the WHERE clause.
  87. // ---------------------------------------------------
  88. return $sql .= implode(', ', $columns).' '.$query->where;
  89. }
  90. /**
  91. * Build a SQL DELETE statement.
  92. *
  93. * @param Query $query
  94. * @return string
  95. */
  96. public static function delete($query)
  97. {
  98. return 'DELETE FROM '.$query->wrap($query->table).' '.$query->where;
  99. }
  100. }