Skip to content

Commit

Permalink
Merge pull request #425 from WildCard65/WildCard65-FixedDBI.inc
Browse files Browse the repository at this point in the history
Fixed DBResultSet.IsFieldNull
  • Loading branch information
psychonic committed Oct 13, 2015
1 parent 29b8d9d commit 8095c71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/include/dbi.inc
Expand Up @@ -223,7 +223,7 @@ methodmap DBResultSet < Handle
// @param field The field index (starting from 0).
// @return True if data is NULL, false otherwise.
// @error Invalid field index, or no current result set.
public native bool IsFieldNull(Handle query, int field);
public native bool IsFieldNull(int field);

// Returns the length of a field's data in the current row of a result
// set. This only needs to be called for strings to determine how many
Expand Down

0 comments on commit 8095c71

Please sign in to comment.