Updated: 2022/Sep/29

Please read Privacy Policy. It's for your privacy.


SQLITE3_RESULT_SUBTYPE(3)  Library Functions Manual  SQLITE3_RESULT_SUBTYPE(3)

NAME
     sqlite3_result_subtype - setting the subtype of an SQL function

SYNOPSIS
     #include <sqlite3.h>

     void
     sqlite3_result_subtype(sqlite3_context*, unsigned int);

DESCRIPTION
     The sqlite3_result_subtype(C,T) function causes the subtype of the result
     from the application-defined SQL function with sqlite3_context C to be
     the value T.  Only the lower 8 bits of the subtype T are preserved in
     current versions of SQLite; higher order bits are discarded.  The number
     of subtype bytes preserved by SQLite might increase in future releases of
     SQLite.

IMPLEMENTATION NOTES
     These declarations were extracted from the interface documentation at
     line 6128.

     SQLITE_API void sqlite3_result_subtype(sqlite3_context*,unsigned int);

SEE ALSO
     sqlite3_context(3)

NetBSD 10.99                    August 24, 2023                   NetBSD 10.99