1.Dd January 24, 2024 2.Dt SQLITE3_AGGREGATE_COUNT 3 3.Os 4.Sh NAME 5.Nm sqlite3_aggregate_count , 6.Nm sqlite3_expired , 7.Nm sqlite3_transfer_bindings , 8.Nm sqlite3_global_recover , 9.Nm sqlite3_thread_cleanup , 10.Nm sqlite3_memory_alarm 11.Nd deprecated functions 12.Sh SYNOPSIS 13.In sqlite3.h 14.Ft int 15.Fo sqlite3_aggregate_count 16.Fa "sqlite3_context*" 17.Fc 18.Ft int 19.Fo sqlite3_expired 20.Fa "sqlite3_stmt*" 21.Fc 22.Ft int 23.Fo sqlite3_transfer_bindings 24.Fa "sqlite3_stmt*" 25.Fa "sqlite3_stmt*" 26.Fc 27.Ft int 28.Fo sqlite3_global_recover 29.Fa "void" 30.Fc 31.Ft void 32.Fo sqlite3_thread_cleanup 33.Fa "void" 34.Fc 35.Ft int 36.Fo sqlite3_memory_alarm 37.Fa "void(*)(void*,sqlite3_int64,int)" 38.Fa "void*" 39.Fa "sqlite3_int64" 40.Fc 41.Sh DESCRIPTION 42These functions are deprecated. 43In order to maintain backwards compatibility with older code, these 44functions continue to be supported. 45However, new applications should avoid the use of these functions. 46To encourage programmers to avoid these functions, we will not explain 47what they do. 48.Sh IMPLEMENTATION NOTES 49These declarations were extracted from the 50interface documentation at line 5609. 51.Bd -literal 52#ifndef SQLITE_OMIT_DEPRECATED 53SQLITE_API SQLITE_DEPRECATED int sqlite3_aggregate_count(sqlite3_context*); 54SQLITE_API SQLITE_DEPRECATED int sqlite3_expired(sqlite3_stmt*); 55SQLITE_API SQLITE_DEPRECATED int sqlite3_transfer_bindings(sqlite3_stmt*, sqlite3_stmt*); 56SQLITE_API SQLITE_DEPRECATED int sqlite3_global_recover(void); 57SQLITE_API SQLITE_DEPRECATED void sqlite3_thread_cleanup(void); 58SQLITE_API SQLITE_DEPRECATED int sqlite3_memory_alarm(void(*)(void*,sqlite3_int64,int), 59 void*,sqlite3_int64); 60#endif 61.Ed 62