.Dd August 24, 2023 .Dt SQLITE3_VALUE_SUBTYPE 3 .Os .Sh NAME .Nm sqlite3_value_subtype .Nd finding the subtype of SQL values .Sh SYNOPSIS .In sqlite3.h .Ft unsigned int .Fo sqlite3_value_subtype .Fa "sqlite3_value*" .Fc .Sh DESCRIPTION The sqlite3_value_subtype(V) function returns the subtype for an application-defined SQL function argument V. The subtype information can be used to pass a limited amount of context from one SQL function to another. Use the .Fn sqlite3_result_subtype routine to set the subtype for the return value of an SQL function. .Sh IMPLEMENTATION NOTES These declarations were extracted from the interface documentation at line 5776. .Bd -literal SQLITE_API unsigned int sqlite3_value_subtype(sqlite3_value*); .Ed .Sh SEE ALSO .Xr sqlite3_result_subtype 3