Navigation
Mobile DocsNavigation
Mobile DocsQuery and manipulate SQLite databases
Connect to SQLite databases to run queries, insert, update, or delete data with full SQL support.
Layout: full
Options: Execute Query, Create Table, Insert Data, Update Data
Placeholder: Enter path to SQLite database file or :memory: for in-memory database
Layout: full
Placeholder: SELECT * FROM table_name WHERE condition;
Layout: full
Condition: operation = "query"
Placeholder: CREATE TABLE table_name (column1 datatype, column2 datatype, ...);
Layout: full
Condition: operation = "create_table"
Placeholder: Enter table name
Layout: half
Condition: operation = ["insert","update","delete"]
Placeholder: { "column1": "value1", "column2": "value2" }
Layout: full
Condition: operation = ["insert","update"]
Placeholder: column1 = "value1" AND column2 > 100
Layout: full
Condition: operation = ["update","delete"]
Required
Required
Optional
Optional
Optional
Optional
Optional
Primary response type:
{
"result": "json",
"query": "string",
"affectedRows": "number",
"error": "string"
}