1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2025-07-05 18:56:59 +03:00
parent ad475eed31
commit 17ada3b115
770 changed files with 10397 additions and 10283 deletions

View File

@@ -123,17 +123,23 @@ When performing multiple requests within a single connection, it is better to co
<TabItem value="bash" label="Bash" default>
```bash
# JSON data can also be passed as a path to a .json file
oint sqlite ExecuteSQLQuery \
--sql "CREATE TABLE test_table (id INTEGER PRIMARY KEY,name TEXT,age INTEGER,salary REAL,is_active BOOLEAN,created_at DATETIME,data BLOB);" \
--db "C:\Users\bayse\AppData\Local\Temp\3luoylh35jh.sqlite"
--sql "SELECT uuid4();" \
--db "C:\Users\bayse\AppData\Local\Temp\xxgd0vmdsyw.sqlite" \
--exts "{'https://hut.openintegrations.dev/test_data/uuid.dll':'sqlite3_uuid_init'}"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
:: JSON data can also be passed as a path to a .json file
oint sqlite ExecuteSQLQuery ^
--sql "CREATE TABLE test_table (id INTEGER PRIMARY KEY,name TEXT,age INTEGER,salary REAL,is_active BOOLEAN,created_at DATETIME,data BLOB);" ^
--db "C:\Users\bayse\AppData\Local\Temp\3luoylh35jh.sqlite"
--sql "SELECT uuid4();" ^
--db "C:\Users\bayse\AppData\Local\Temp\xxgd0vmdsyw.sqlite" ^
--exts "{'https://hut.openintegrations.dev/test_data/uuid.dll':'sqlite3_uuid_init'}"
```
</TabItem>
</Tabs>