SQLITE3_DECLARE_VTAB(3) Library Functions Manual SQLITE3_DECLARE_VTAB(3)

sqlite3_declare_vtabdeclare the schema of a virtual table

#include <sqlite3.h>

int
sqlite3_declare_vtab(sqlite3*, const char *zSQL);

The xCreate and xConnect methods of a virtual table module call this interface to declare the format (the names and datatypes of the columns) of the virtual tables they implement.

These declarations were extracted from the interface documentation at line 7640.

SQLITE_API int sqlite3_declare_vtab(sqlite3*, const char *zSQL);

sqlite3_module(3)

January 24, 2024 NetBSD 11.0