C Library Functions  - sqlite3_query_table (3)

NAME

sqlite3_query_table(3f) - [M_sqlite] Retrieve the column names and types from a table

CONTENTS

Synopsis
Description
Options

SYNOPSIS

subroutine sqlite3_query_table(db, tablename, columns)

    type(SQLITE_DATABASE) db
    character(len=*) tablename
    type(SQLITE_COLUMN), dimension(:), pointer columns

DESCRIPTION

Query the structure of the table

Side effects:

      The columns array is allocated and filled

Note:

      On entry the columns argument must not be
      associated. On exit, it will point to a
      freshly allocated array of column names/types

OPTIONS

db Structure variable identifying the database connection
tablename
  Name of the table to be inspected
columns
  An array with the properties of all columns. Deallocate it when you are done.


Nemo Release 3.1 sqlite3_query_table (3) August 28, 2026
Generated by manServer 1.08 from aeb21d34-3a16-495c-88a1-138e9e97e45d using man macros.