Blame view

src/vendor/1.2.5/Phalcon/Db/Adapter/Pdo/Mysql.php 1.04 KB
1ea3b987   Administrator   maby first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  <?php 
  
  namespace Phalcon\Db\Adapter\Pdo {
  
  	/**
  	 * Phalcon\Db\Adapter\Pdo\Mysql
  	 *
  	 * Specific functions for the Mysql database system
  	 *
  	 *<code>
  	 *
  	 *	$config = array(
  	 *		"host" => "192.168.0.11",
  	 *		"dbname" => "blog",
  	 *		"port" => 3306,
  	 *		"username" => "sigma",
  	 *		"password" => "secret"
  	 *	);
  	 *
  	 *	$connection = new Phalcon\Db\Adapter\Pdo\Mysql($config);
  	 *
  	 *</code>
  	 */
  	
  	class Mysql extends \Phalcon\Db\Adapter\Pdo implements \Phalcon\Events\EventsAwareInterface, \Phalcon\Db\AdapterInterface {
  
  		protected $_type;
  
  		protected $_dialectType;
  
  		/**
  		 * Escapes a column/table/schema name
  		 *
  		 * @param string $identifier
  		 * @return string
  		 */
  		public function escapeIdentifier($identifier){ }
  
  
  		/**
  		 * Returns an array of \Phalcon\Db\Column objects describing a table
  		 *
  		 * <code>
  		 * print_r($connection->describeColumns("posts")); ?>
  		 * </code>
  		 *
  		 * @param string $table
  		 * @param string $schema
  		 * @return \Phalcon\Db\Column[]
  		 */
  		public function describeColumns($table, $schema=null){ }
  
  	}
  }