Exemplo n.º 1
0
 /**
  * @depends testFetchObjectCustom
  */
 public function testBindColumn(DBALite_Statement $stmt)
 {
     $name = '';
     $supplier = null;
     $stmt->bindColumn(3, $supplier);
     $stmt->bindColumn('ProductName', $name);
     $stmt->fetchRow(PDO::FETCH_BOUND);
     $this->assertEquals(16, $supplier);
     $this->assertEquals('Laughing Lumberjack Lager', $name);
     return $stmt;
 }