php-sqlsrv/test/Performance/benchmark/sqlsrv/SqlsrvFetchBench.php

55 lines
1.4 KiB
PHP
Raw Normal View History

2017-05-06 02:32:09 +02:00
<?php
use SqlsrvPerfTest\SqlsrvUtil;
/**
* @Iterations(1000)
2017-05-06 02:32:09 +02:00
* @BeforeMethods({"connect", "setTableName", "createTable", "generateInsertValues", "insertWithPrepare"})
* @AfterMethods({ "dropTable", "disconnect"})
*/
class SqlsrvFetchBench{
private $conn;
private $tableName;
private $insertValues;
public function setTableName(){
$this->tableName = "datatypes_".rand();
}
public function connect(){
$this->conn = SqlsrvUtil::connect();
}
public function createTable(){
SqlsrvUtil::createCRUDTable( $this->conn, $this->tableName );
}
public function generateInsertValues(){
$this->insertValues = SqlsrvUtil::generateInsertValues();
}
public function insertWithPrepare(){
SqlsrvUtil::insertWithPrepare( $this->conn, $this->tableName, $this->insertValues );
}
/**
* Each iteration inserts a row into the table, benchFetchWithPrepare() fetches that row 1000 times.
* Note that, every fetch calls prepare, execute and fetch APIs.
*/
public function benchFetchWithPrepare(){
for( $i=0; $i<100; $i++){
2017-05-06 02:32:09 +02:00
SqlsrvUtil::fetchWithPrepare( $this->conn, $this->tableName );
}
}
public function dropTable(){
SqlsrvUtil::dropTable( $this->conn, $this->tableName );
}
public function disconnect(){
SqlsrvUtil::disconnect( $this->conn );
}
}