equal
deleted
inserted
replaced
13 * to license@zend.com so we can send you a copy immediately. |
13 * to license@zend.com so we can send you a copy immediately. |
14 * |
14 * |
15 * @category Zend |
15 * @category Zend |
16 * @package Zend_Test |
16 * @package Zend_Test |
17 * @subpackage PHPUnit |
17 * @subpackage PHPUnit |
18 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
18 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
20 * @version $Id: DbAdapter.php 20096 2010-01-06 02:05:09Z bkarwin $ |
20 * @version $Id: DbAdapter.php 25024 2012-07-30 15:08:15Z rob $ |
21 */ |
21 */ |
22 |
22 |
23 /** |
23 /** |
24 * @see Zend_Db_Adapter_Abstract |
24 * @see Zend_Db_Adapter_Abstract |
25 */ |
25 */ |
39 * Testing Database Adapter which acts as a stack for SQL Results |
39 * Testing Database Adapter which acts as a stack for SQL Results |
40 * |
40 * |
41 * @category Zend |
41 * @category Zend |
42 * @package Zend_Test |
42 * @package Zend_Test |
43 * @subpackage PHPUnit |
43 * @subpackage PHPUnit |
44 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
44 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
45 * @license http://framework.zend.com/license/new-bsd New BSD License |
45 * @license http://framework.zend.com/license/new-bsd New BSD License |
46 */ |
46 */ |
47 class Zend_Test_DbAdapter extends Zend_Db_Adapter_Abstract |
47 class Zend_Test_DbAdapter extends Zend_Db_Adapter_Abstract |
48 { |
48 { |
49 /** |
49 /** |
71 */ |
71 */ |
72 protected $_describeTables = array(); |
72 protected $_describeTables = array(); |
73 |
73 |
74 /** |
74 /** |
75 * @var string |
75 * @var string |
76 */ |
76 */ |
77 protected $_quoteIdentifierSymbol = ''; |
77 protected $_quoteIdentifierSymbol = ''; |
78 |
78 |
79 /** |
79 /** |
80 * Empty constructor to make it parameterless. |
80 * Empty constructor to make it parameterless. |
81 */ |
81 */ |
110 return $this; |
110 return $this; |
111 } |
111 } |
112 |
112 |
113 /** |
113 /** |
114 * @var string |
114 * @var string |
115 */ |
115 */ |
116 public function setQuoteIdentifierSymbol($symbol) |
116 public function setQuoteIdentifierSymbol($symbol) |
117 { |
117 { |
118 $this->_quoteIdentifierSymbol = $symbol; |
118 $this->_quoteIdentifierSymbol = $symbol; |
119 } |
119 } |
120 |
120 |