db = ezcDbInstance::get(); $this->q = $this->db->createSelectQuery(); $this->e = $this->q->expr; $this->assertNotNull( $this->db, 'Database instance is not initialized.' ); try { $this->db->exec( 'DROP TABLE query_test' ); $this->db->exec( 'DROP TABLE query_test2' ); } catch ( Exception $e ) {} // eat // insert some data $this->db->exec( 'CREATE TABLE query_test ( id int, company VARCHAR(255), section VARCHAR(255), employees int )' ); $this->db->exec( "INSERT INTO query_test VALUES ( 1, 'eZ systems', 'Norway', 20 )" ); $this->db->exec( "INSERT INTO query_test VALUES ( 2, 'IBM', 'Norway', 500 )" ); $this->db->exec( "INSERT INTO query_test VALUES ( 3, 'eZ systems', 'Ukraine', 10 )" ); $this->db->exec( "INSERT INTO query_test VALUES ( 4, 'IBM', 'Germany', null )" ); // insert some data $this->db->exec( 'CREATE TABLE query_test2 ( id int, company VARCHAR(255), section VARCHAR(255), employees int )' ); $this->db->exec( "INSERT INTO query_test2 VALUES ( 1, 'eZ systems', 'Norway', 20 )" ); $this->db->exec( "INSERT INTO query_test2 VALUES ( 2, 'IBM', 'Norway', 500 )" ); $this->db->exec( "INSERT INTO query_test2 VALUES ( 3, 'eZ systems', 'Ukraine', 10 )" ); $this->db->exec( "INSERT INTO query_test2 VALUES ( 4, 'IBM', 'Germany', null )" ); } public function tearDown() { $this->db->exec( 'DROP TABLE query_test' ); $this->db->exec( 'DROP TABLE query_test2' ); } public function testSubSelect() { $name = 'IBM'; $name2 = 'company'; $q = new ezcQuerySelect( ezcDbInstance::get() ); //subselect $q2 = $q->subSelect(); //bind values $q2->select('company') ->from( 'query_test' ) ->where( $q2->expr->eq( 'company', "'IBM'" ), ' id > 2 ' ); $q->select('*')->from( 'query_test' ) ->where( ' id >= 1 ', $q->expr->in( 'company', $q2->getQuery() ) ); $stmt = $q->prepare(); $stmt->execute(); $result = $stmt->fetchAll(); $this->assertEquals( 'IBM', $result[0]['company'] ); $this->assertEquals( 'Norway', $result[0]['section'] ); $this->assertEquals( 'IBM', $result[1]['company'] ); $this->assertEquals( 'Germany', $result[1]['section'] ); } public function testSubSelectBindParam() { $name = 'IBM'; $name2 = 'company'; $q = new ezcQuerySelect( ezcDbInstance::get() ); //subselect $q2 = $q->subSelect(); //bind values $q2->select('company') ->from( 'query_test' ) ->where( $q2->expr->eq( 'company', $q2->bindParam( $name ) ), ' id > 2 ' ); $q->select('*')->from( 'query_test' ) ->where( ' id >= 1 ', $q->expr->in( 'company', $q2->getQuery() ) ); $stmt = $q->prepare(); $stmt->execute(); $result = $stmt->fetchAll(); $this->assertEquals( 'IBM', $result[0]['company'] ); $this->assertEquals( 'Norway', $result[0]['section'] ); $this->assertEquals( 'IBM', $result[1]['company'] ); $this->assertEquals( 'Germany', $result[1]['section'] ); } public function testSubSubSelect() { $name = 'IBM'; $name2 = 'company'; $q = new ezcQuerySelect( ezcDbInstance::get() ); //subselect $q2 = $q->subSelect(); //sub subselect $q3 = $q2->subSelect(); $q3->select('*') ->from( 'query_test2' ) ->where( $q3->expr->in( 'company', 'IBM', 'eZ systems' ) ); //bind values $q2->select('company') ->from( 'query_test' ) ->where( $q2->expr->eq( 'company', $q2->bindParam( $name ) ), ' id > 2 ' ); $q->select('*')->from( 'query_test' ) ->where( ' id >= 1 ', $q->expr->in( 'company', $q2->getQuery() ) ); $stmt = $q->prepare(); $stmt->execute(); $result = $stmt->fetchAll(); $this->assertEquals( 'IBM', $result[0]['company'] ); $this->assertEquals( 'Norway', $result[0]['section'] ); $this->assertEquals( 'IBM', $result[1]['company'] ); $this->assertEquals( 'Germany', $result[1]['section'] ); } public static function suite() { return new ezcTestSuite( 'ezcQuerySubSelectTestImpl' ); } } ?>