connection.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <?php namespace System\DB;
  2. class Connection {
  3. /**
  4. * The connection name.
  5. *
  6. * @var string
  7. */
  8. public $name;
  9. /**
  10. * The connection configuration.
  11. *
  12. * @var array
  13. */
  14. public $config;
  15. /**
  16. * The PDO connection.
  17. *
  18. * @var PDO
  19. */
  20. public $pdo;
  21. /**
  22. * All of the queries that have been executed on the connection.
  23. *
  24. * @var array
  25. */
  26. public $queries = array();
  27. /**
  28. * Create a new Connection instance.
  29. *
  30. * @param string $name
  31. * @param object $config
  32. * @param Connector $connector
  33. * @return void
  34. */
  35. public function __construct($name, $config, $connector)
  36. {
  37. $this->name = $name;
  38. $this->config = $config;
  39. $this->pdo = $connector->connect($this->config);
  40. }
  41. /**
  42. * Execute a SQL query against the connection and return the first result.
  43. *
  44. * @param string $sql
  45. * @param array $bindings
  46. * @return object
  47. */
  48. public function first($sql, $bindings = array())
  49. {
  50. return (count($results = $this->query($sql, $bindings)) > 0) ? $results[0] : null;
  51. }
  52. /**
  53. * Execute a SQL query against the connection.
  54. *
  55. * The method returns the following based on query type:
  56. *
  57. * SELECT -> Array of stdClasses
  58. * UPDATE -> Number of rows affected.
  59. * DELETE -> Number of Rows affected.
  60. * ELSE -> Boolean true / false depending on success.
  61. *
  62. * @param string $sql
  63. * @param array $bindings
  64. * @return array
  65. */
  66. public function query($sql, $bindings = array())
  67. {
  68. $this->queries[] = $sql;
  69. $query = $this->pdo->prepare($sql);
  70. $result = $query->execute($bindings);
  71. if (strpos(strtoupper($sql), 'SELECT') === 0)
  72. {
  73. return $query->fetchAll(\PDO::FETCH_CLASS, 'stdClass');
  74. }
  75. elseif (strpos(strtoupper($sql), 'UPDATE') === 0 or strpos(strtoupper($sql), 'DELETE') === 0)
  76. {
  77. return $query->rowCount();
  78. }
  79. return $result;
  80. }
  81. /**
  82. * Begin a fluent query against a table.
  83. *
  84. * @param string $table
  85. * @return Query
  86. */
  87. public function table($table)
  88. {
  89. return new Query($table, $this);
  90. }
  91. /**
  92. * Get the keyword identifier wrapper for the connection.
  93. *
  94. * @return string
  95. */
  96. public function wrapper()
  97. {
  98. if (array_key_exists('wrap', $this->config) and $this->config['wrap'] === false) return '';
  99. return ($this->driver() == 'mysql') ? '`' : '"';
  100. }
  101. /**
  102. * Get the driver name for the database connection.
  103. *
  104. * @return string
  105. */
  106. public function driver()
  107. {
  108. return $this->pdo->getAttribute(\PDO::ATTR_DRIVER_NAME);
  109. }
  110. /**
  111. * Get the table prefix for the database connection.
  112. *
  113. * @return string
  114. */
  115. public function prefix()
  116. {
  117. return (array_key_exists('prefix', $this->config)) ? $this->config['prefix'] : '';
  118. }
  119. }