Updated: 2022/Sep/29

Please read Privacy Policy. It's for your privacy.


SQLITE3_DECLARE_VTAB(3)    Library Functions Manual    SQLITE3_DECLARE_VTAB(3)

NAME
     sqlite3_declare_vtab - declare the schema of a virtual table

SYNOPSIS
     #include <sqlite3.h>

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

DESCRIPTION
     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.

IMPLEMENTATION NOTES
     These declarations were extracted from the interface documentation at
     line 7532.

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

SEE ALSO
     sqlite3_module(3)

NetBSD 10.99                    August 24, 2023                   NetBSD 10.99