diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-04-25 19:55:15 -0400 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-04-25 19:55:15 -0400 |
| commit | 253e67c8b3a72b3a4757fdbc5845297628db0a4a (patch) | |
| tree | adf53b66087aa30dfbf8bf391a1dadb044c3bf4d /static/netbsd/man3/sqlite3_bind_parameter_index.3 | |
| parent | a9157ce950dfe2fc30795d43b9d79b9d1bffc48b (diff) | |
docs: Added All NetBSD Manuals
Diffstat (limited to 'static/netbsd/man3/sqlite3_bind_parameter_index.3')
| -rw-r--r-- | static/netbsd/man3/sqlite3_bind_parameter_index.3 | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/static/netbsd/man3/sqlite3_bind_parameter_index.3 b/static/netbsd/man3/sqlite3_bind_parameter_index.3 new file mode 100644 index 00000000..5ad59b11 --- /dev/null +++ b/static/netbsd/man3/sqlite3_bind_parameter_index.3 @@ -0,0 +1,34 @@ +.Dd January 24, 2024 +.Dt SQLITE3_BIND_PARAMETER_INDEX 3 +.Os +.Sh NAME +.Nm sqlite3_bind_parameter_index +.Nd index of a parameter with a given name +.Sh SYNOPSIS +.In sqlite3.h +.Ft int +.Fo sqlite3_bind_parameter_index +.Fa "sqlite3_stmt*" +.Fa "const char *zName" +.Fc +.Sh DESCRIPTION +Return the index of an SQL parameter given its name. +The index value returned is suitable for use as the second parameter +to sqlite3_bind(). +A zero is returned if no matching parameter is found. +The parameter name must be given in UTF-8 even if the original statement +was prepared from UTF-16 text using +.Fn sqlite3_prepare16_v2 +or +.Fn sqlite3_prepare16_v3 . +.Sh IMPLEMENTATION NOTES +These declarations were extracted from the +interface documentation at line 4748. +.Bd -literal +SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName); +.Ed +.Sh SEE ALSO +.Xr sqlite3_bind_blob 3 , +.Xr sqlite3_bind_parameter_count 3 , +.Xr sqlite3_bind_parameter_name 3 , +.Xr sqlite3_prepare 3 |
