| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Db
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id $
- */
- require_once 'Zend/Db/Statement/Pdo/TestCommon.php';
- /**
- * @category Zend
- * @package Zend_Db
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Db
- * @group Zend_Db_Statement
- */
- class Zend_Db_Statement_Pdo_IbmTest extends Zend_Db_Statement_Pdo_TestCommon
- {
- public function getDriver()
- {
- return 'Pdo_Ibm';
- }
- /**
- * used by testStatementGetColumnMeta()
- *
- */
- protected $_getColumnMetaKeys = array(
- 'scale', 'table', 'native_type', 'flags', 'name', 'len', 'precision', 'pdo_type'
- );
- public function testStatementNextRowset()
- {
- $select = $this->_db->select()
- ->from('zfproducts');
- $stmt = $this->_db->prepare($select->__toString());
- $result = $stmt->nextRowset();
- // there is no next rowset so $result should be false
- $this->assertFalse($result);
- $stmt->closeCursor();
- }
- public function testStatementColumnCountForSelect()
- {
- $select = $this->_db->select()
- ->from('zfproducts');
- $stmt = $this->_db->prepare($select->__toString());
- $n = $stmt->columnCount();
- $this->assertEquals(2, $n);
- $stmt->execute();
- $n = $stmt->columnCount();
- $stmt->closeCursor();
- $this->assertTrue(is_int($n));
- $this->assertEquals(2, $n);
- }
- public function testStatementGetSetAttribute()
- {
- $select = $this->_db->select()
- ->from('zfproducts');
- $stmt = $this->_db->prepare($select->__toString());
- $value = 'value';
- try {
- $stmt->setAttribute(1234, $value);
- } catch (Zend_Exception $e) {
- $this->assertContains('This driver doesn\'t support setting attributes', $e->getMessage());
- }
- try {
- $this->assertEquals($value, $stmt->getAttribute(1234), "Expected '$value' #1");
- } catch (Zend_Exception $e) {
- $this->assertContains('Driver does not support this function: 1 Unknown attribute', $e->getMessage());
- return;
- }
- $valueArray = array('value1', 'value2');
- $stmt->setAttribute(1235, $valueArray);
- $this->assertEquals($valueArray, $stmt->getAttribute(1235), "Expected array #1");
- $this->assertEquals($value, $stmt->getAttribute(1234), "Expected '$value' #2");
- $valueObject = new stdClass();
- $stmt->setAttribute(1236, $valueObject);
- $this->assertSame($valueObject, $stmt->getAttribute(1236), "Expected object");
- $this->assertEquals($valueArray, $stmt->getAttribute(1235), "Expected array #2");
- $this->assertEquals($value, $stmt->getAttribute(1234), "Expected '$value' #2");
- }
- }
|