connection.php 2.5 KB

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