Skip to content

DB.Query

Name Mandatory Description Default Type
⬅️ Input The input of the shard, if any [Any]
Output ➡️ The resulting output of the shard {Any}[Any]
Query No The database query to execute every activation. SELECT * FROM test WHERE id = ? StringVar(String)
Database No The sqlite database filename. If left empty, it will first check for an exposed variable named 'sqlite/database', and if that doesn't exist, it will use 'shards.db' as the default. none NoneStringVar(String)
AsRows No Return the result as rows. false Bool
Retry No Retry the query if the database was locked. false Bool
ReadOnly No If true, the database will be opened in read only mode. false BoolVar(Bool)