tableName = "LargeDB.dbo.datatypes"; } public function connect() { $this->conn = PDOSqlsrvUtil::connect(); } /* * Each iteration calls prepare, execute and fetch APIs to fetch the already populated data */ public function benchFetchWithPrepare() { PDOSqlsrvUtil::fetchWithPrepare( $this->conn, $this->tableName ); } public function disconnect() { PDOSqlsrvUtil::disconnect( $this->conn ); } }