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