| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <?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/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_SqlsrvTest extends Zend_Db_Statement_TestCommon
- {
- // http://msdn.microsoft.com/en-us/library/cc296197(SQL.90).aspx
- protected $_getColumnMetaKeys = array(
- 'Name' , 'Type', 'Size', 'Precision', 'Scale', 'Nullable'
- );
- public function testStatementExecuteWithParams()
- {
- $products = $this->_db->quoteIdentifier('zfproducts');
- // Make IDENTITY column accept explicit value.
- // This can be done in only one table in a given session.
- sqlsrv_query($this->_db->getConnection(), "SET IDENTITY_INSERT $products ON");
- parent::testStatementExecuteWithParams();
- sqlsrv_query($this->_db->getConnection(), "SET IDENTITY_INSERT $products OFF");
- }
- public function testStatementBindParamByName()
- {
- $this->markTestSkipped($this->getDriver() . ' does not support bind by name.');
- }
- public function testStatementBindValueByName()
- {
- $this->markTestSkipped($this->getDriver() . ' does not support bind by name.');
- }
- public function testStatementBindParamByPosition()
- {
- $this->markTestSkipped($this->getDriver() . ' does not support bind by position.');
- }
- public function testStatementBindValueByPosition()
- {
- $this->markTestSkipped($this->getDriver() . ' does not support bind by position.');
- }
- public function testStatementNextRowset()
- {
- $products = $this->_db->quoteIdentifier('zfproducts');
- $product_id = $this->_db->quoteIdentifier('product_id');
- $query = "SELECT * FROM $products WHERE $product_id > 1 ORDER BY $product_id ASC";
- $stmt = $this->_db->query($query . ';' . $query);
- $result1 = $stmt->fetchAll();
- $stmt->nextRowset();
- $result2 = $stmt->fetchAll();
- $this->assertEquals(count($result1), count($result2));
- $this->assertEquals($result1, $result2);
- $stmt->closeCursor();
- }
- /*
- * @group ZF-8138
- */
- public function testStatementNextRowsetWithProcedure()
- {
- $products = $this->_db->quoteIdentifier('zfproducts');
- $product_id = $this->_db->quoteIdentifier('product_id');
- $product_name = $this->_db->quoteIdentifier('product_name');
- $products_procedure = $this->_db->quoteIdentifier('#InsertIntoProducts');
- $prodecure = "CREATE PROCEDURE $products_procedure
- @ProductName varchar(100)
- AS
- BEGIN
- -- insert row (result set 1)
- INSERT INTO $products
- ($product_name)
- VALUES
- (@ProductName);
- -- Get results (result set 2)
- SELECT * FROM $products;
- END";
- // create procedure
- $this->_db->query($prodecure);
- $stmt = $this->_db->query('{call ' . $products_procedure .'(?)}', array('Product'));
- $result1 = $stmt->rowCount();
- $this->assertEquals(1, $result1, 'Expected 1 row to be inserted');
- $stmt->nextRowset();
- $result2 = $stmt->fetchAll();
- $this->assertEquals(4, count($result2), 'Expected 3 results from original data and one 1 row');
- $this->assertEquals('Product', $result2[3]['product_name']);
- $stmt->closeCursor();
- }
- /*
- * @group ZF-7559
- */
- public function testStatementWithProcedure()
- {
- $products = $this->_db->quoteIdentifier('zfproducts');
- $products_procedure = $this->_db->quoteIdentifier('#GetProducts');
- $prodecure = "CREATE PROCEDURE $products_procedure
- AS
- BEGIN
- SELECT * FROM $products;
- END";
- // create procedure
- $this->_db->query($prodecure);
- $stmt = $this->_db->query('EXECUTE ' . $products_procedure);
- $result1 = $stmt->fetchAll();
- $this->assertEquals(3, count($result1), 'Expected 3 results from original data');
- $stmt->closeCursor();
- }
- public function testStatementErrorInfo()
- {
- $products = $this->_db->quoteIdentifier('zfproducts');
- $product_id = $this->_db->quoteIdentifier('product_id');
- $query = "INVALID SELECT * FROM INVALID TABLE WHERE $product_id > 1 ORDER BY $product_id ASC";
- $stmt = new Zend_Db_Statement_Sqlsrv($this->_db, $query);
- try {
- $stmt->fetchAll();
- $this->fail("Invalid query should have throw an error");
- } catch (Zend_Db_Statement_Sqlsrv_Exception $e) {
- // Exception is thrown, nothing to worry about
- $this->assertEquals(-11, $e->getCode());
- }
- $this->assertNotSame(false, $stmt->errorCode());
- $this->assertEquals(-11, $stmt->errorCode());
- $errors = $stmt->errorInfo();
- $this->assertEquals(2, count($errors));
- $this->assertEquals($stmt->errorCode(), $errors[0]);
- $this->assertTrue(is_string($errors[1]));
- }
- public function getDriver()
- {
- return 'Sqlsrv';
- }
- }
|