116 lines
3.6 KiB
PHP
116 lines
3.6 KiB
PHP
|
<?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-2009 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';
|
||
|
|
||
|
PHPUnit_Util_Filter::addFileToFilter(__FILE__);
|
||
|
|
||
|
/**
|
||
|
* @category Zend
|
||
|
* @package Zend_Db
|
||
|
* @subpackage UnitTests
|
||
|
* @copyright Copyright (c) 2005-2009 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->assertType('integer', $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");
|
||
|
}
|
||
|
}
|