Skip to content

Commit 8589148

Browse files
authored
Fix docstring of DBInterface.execute (#44)
1 parent a2734ab commit 8589148

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DBInterface.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ and indexable (i.e. implement `length` and `getindex` for value access by index)
119119
to subtype `DBInterface.Cursor` explicitly as long as they satisfy the interface. For DDL/DML SQL statements, which typically
120120
do not return results, an iterator is still expected to be returned that just iterates `nothing`, i.e. an "empty" iterator.
121121
122-
Note that `DBInterface.execute` returns ***a single*** `DBInterface.Cursor`, which represents a single resultset from the database.
122+
Note that `DBInterface.execute` returns **a single** `DBInterface.Cursor`, which represents a single resultset from the database.
123123
For use-cases involving multiple result-sets from a single query, see `DBInterface.executemultiple`.
124124
125125
If function `f` is provided, `DBInterface.execute` will return the result of applying `f` to the `DBInterface.Cursor` object

0 commit comments

Comments
 (0)