Updated: 2022/Sep/29
Please read Privacy Policy. It's for your privacy.
SQLITE3_AGGREGATE_COUNT(3) Library Functions Manual
NAME
sqlite3_aggregate_count, sqlite3_expired, sqlite3_transfer_bindings,
sqlite3_global_recover, sqlite3_thread_cleanup, sqlite3_memory_alarm -
deprecated functions
SYNOPSIS
#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);
DESCRIPTION
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.
IMPLEMENTATION NOTES
These declarations were extracted from the interface documentation at
line 5590.
#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
NetBSD 10.99 August 24, 2023 NetBSD 10.99