Skip to content

Commit dda0405

Browse files
authored
Update README.md
1 parent d4f9052 commit dda0405

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ SQLFreeStmt(hStmt, SQL_CLOSE);
3333

3434
If you were to run this query in Postgres then what would happen is this query would have between 6 and 7 network calls. 1 call to prepare the query, 2 calls to a synchronization routine, 1 call to describe the output columns from this query, 1 call to bind the parameters, 1 call to execute the query and maybe one call to a direct execution of a transaction maintainance routine query.
3535

36-
If one were to copy paste the all the code for this query, excluding just the SQLPrepare command, there would be only two network calls in future calls (bind and execute).
36+
If one were to copy paste the all the code for this query, excluding just the SQLPrepare command, there would be only three network calls in future calls (describe, bind and execute).
3737

3838

3939
## Example Query 2

0 commit comments

Comments
 (0)