Skip to content

Commit

Permalink
little fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-knozderko committed Mar 26, 2024
1 parent 5bc558c commit 67bbe2b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,9 @@ Assert.IsTrue(conn.IsStillRunning(queryStatus)); // assuming that the query is s
Assert.IsFalse(conn.IsAnError(queryStatus)); // assuming that the query has not finished with error
```

The following example shows how to get query results. The operation will repeatedly check the query status until the query is completed or timeout happened or reaching the maximal number of attempts. The synchronous code example:
The following example shows how to get query results.
The operation will repeatedly check the query status until the query is completed or timeout happened or reaching the maximum number of attempts.
The synchronous code example:
```cs
DbDataReader reader = cmd.GetResultsFromQueryId(queryId);
```
Expand Down

0 comments on commit 67bbe2b

Please sign in to comment.