Skip to content
This repository has been archived by the owner on Jun 12, 2020. It is now read-only.

Commit

Permalink
A note about the effects of calling IsComplete()
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyberboss authored Jun 7, 2018
1 parent 8227ca0 commit 6131dd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DMAPI/BSQL.dm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//BSQL - DMAPI v1.0.2.0
//BSQL - DMAPI v1.0.3.0

//types of connections
#define BSQL_CONNECTION_TYPE_MARIADB "MySql"
Expand Down Expand Up @@ -62,7 +62,7 @@ Get the error message associated with an operation. Should not be used while IsC
return

/*
Gets an associated list of column name -> value representation of the most recent row in the query. Only valid if IsComplete() returns TRUE. If this returns null and no errors are present there are no more results in the query.
Gets an associated list of column name -> value representation of the most recent row in the query. Only valid if IsComplete() returns TRUE. If this returns null and no errors are present there are no more results in the query. Important to note that once IsComplete() returns TRUE it must not be called again without checking this or the row values may be lost
Returns: An associated list of column name -> value for the row. Values will always be either strings or null
*/
Expand Down

0 comments on commit 6131dd7

Please sign in to comment.