We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2fc6e8 commit 70ed9b4Copy full SHA for 70ed9b4
include/docs/cursor.h
@@ -144,3 +144,9 @@ PyDoc_STRVAR(
144
"Indicates if the current result set contains in out or out parameter\n"
145
"from a previous executed stored procedure."
146
);
147
+
148
+PyDoc_STRVAR(
149
+ cursor_paramcount__doc__,
150
+ "(read)\n\n"
151
+ "Returns the number of parameter markers present in the executed statement."
152
+);
mariadb/mariadb_cursor.c
@@ -208,7 +208,7 @@ static struct PyMemberDef MrdbCursor_Members[] =
208
T_UINT,
209
offsetof(MrdbCursor, parseinfo.paramcount),
210
READONLY,
211
- MISSING_DOC},
+ cursor_paramcount__doc__},
212
{"_data",
213
T_OBJECT,
214
offsetof(MrdbCursor, data),
0 commit comments