.Dd August 24, 2023 .Dt SQLITE3_RESULT_SUBTYPE 3 .Os .Sh NAME .Nm sqlite3_result_subtype .Nd setting the subtype of an SQL function .Sh SYNOPSIS .In sqlite3.h .Ft void .Fo sqlite3_result_subtype .Fa "sqlite3_context*" .Fa "unsigned int" .Fc .Sh 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. .Sh IMPLEMENTATION NOTES These declarations were extracted from the interface documentation at line 6128. .Bd -literal SQLITE_API void sqlite3_result_subtype(sqlite3_context*,unsigned int); .Ed .Sh SEE ALSO .Xr sqlite3_context 3