| SQLITE3_AGGREGATE_COUNT(3) | Library Functions Manual | SQLITE3_AGGREGATE_COUNT(3) |
sqlite3_aggregate_count,
sqlite3_expired,
sqlite3_transfer_bindings,
sqlite3_global_recover,
sqlite3_thread_cleanup,
sqlite3_memory_alarm —
deprecated functions
#include
<sqlite3.h>
int
sqlite3_aggregate_count(sqlite3_context*);
int
sqlite3_expired(sqlite3_stmt*);
int
sqlite3_transfer_bindings(sqlite3_stmt*,
sqlite3_stmt*);
int
sqlite3_global_recover(void);
void
sqlite3_thread_cleanup(void);
int
sqlite3_memory_alarm(void(*)(void*,sqlite3_int64,int),
void*, sqlite3_int64);
These functions are deprecated. In order to maintain backwards compatibility with older code, these functions continue to be supported. However, new applications should avoid the use of these functions. To encourage programmers to avoid these functions, we will not explain what they do.
These declarations were extracted from the interface documentation at line 5609.
#ifndef SQLITE_OMIT_DEPRECATED
SQLITE_API SQLITE_DEPRECATED int sqlite3_aggregate_count(sqlite3_context*);
SQLITE_API SQLITE_DEPRECATED int sqlite3_expired(sqlite3_stmt*);
SQLITE_API SQLITE_DEPRECATED int sqlite3_transfer_bindings(sqlite3_stmt*, sqlite3_stmt*);
SQLITE_API SQLITE_DEPRECATED int sqlite3_global_recover(void);
SQLITE_API SQLITE_DEPRECATED void sqlite3_thread_cleanup(void);
SQLITE_API SQLITE_DEPRECATED int sqlite3_memory_alarm(void(*)(void*,sqlite3_int64,int),
void*,sqlite3_int64);
#endif
| January 24, 2024 | NetBSD 11.0 |