v45

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-143613122.6 KB
sqlite

Execute a single SQLite statement and return results

post/v1/sqlite/execute

Request body

Response

Result of executing an SQL statement.

columnsstring[] required

Names of columns.

Names of columns can be defined using the AS keyword in SQL:

SELECT author AS author, COUNT(*) AS count FROM books GROUP BY author
columnTypesstring[] required

Types of columns.

The types are currently shown for types declared in a SQL table. For column types of function calls, for example, an empty string is returned.

rowsAffectednumber required

Number of rows that were affected by an UPDATE, INSERT or DELETE operation.

This value is not specified for other SQL statements.