connection.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. else
  73. {
  74. return $result;
  75. }
  76. }
  77. /**
  78. * Begin a fluent query against a table.
  79. *
  80. * @param string $table
  81. * @return Query
  82. */
  83. public function table($table)
  84. {
  85. return new Query($table, $this);
  86. }
  87. /**
  88. * Get the keyword identifier wrapper for the connection.
  89. *
  90. * @return string
  91. */
  92. public function wrapper()
  93. {
  94. if (array_key_exists('wrap', $this->config) and $this->config['wrap'] === false) return '';
  95. return ($this->driver() == 'mysql') ? '`' : '"';
  96. }
  97. /**
  98. * Get the driver name for the database connection.
  99. *
  100. * @return string
  101. */
  102. public function driver()
  103. {
  104. return $this->pdo->getAttribute(\PDO::ATTR_DRIVER_NAME);
  105. }
  106. /**
  107. * Get the table prefix for the database connection.
  108. *
  109. * @return string
  110. */
  111. public function prefix()
  112. {
  113. return (array_key_exists('prefix', $this->config)) ? $this->config['prefix'] : '';
  114. }
  115. }