tableName = "datatypes_".rand(); } public function connect() { $this->conn = PDOSqlsrvUtil::connect(); } public function createTable() { PDOSqlsrvUtil::createCRUDTable( $this->conn, $this->tableName ); } public function generateInsertValues() { $this->insertValues = PDOSqlsrvUtil::generateInsertValues(); } public function insertWithPrepare() { PDOSqlsrvUtil::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; $iconn, $this->tableName ); } } public function dropTable() { PDOSqlsrvUtil::dropTable( $this->conn, $this->tableName ); } public function disconnect() { PDOSqlsrvUtil::disconnect( $this->conn ); } }