1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-10-30 23:47:46 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2024-12-30 22:30:57 +03:00
parent 1b230cc341
commit 7b70db4f30
16 changed files with 6074 additions and 6034 deletions

View File

@@ -36,6 +36,9 @@ Without specifying the `ForcifyResult` flag, result data is returned only for qu
```bsl title="1C:Enterprise/OneScript code example"
TFN = GetTempFileName("sqlite");
Image = "https://api.athenaeum.digital/test_data/picture.jpg";
OPI_TypeConversion.GetBinaryData(Image); // Image - Type: BinaryData
Connection = OPI_SQLite.CreateConnection(TFN);
// CREATE
@@ -65,7 +68,7 @@ Without specifying the `ForcifyResult` flag, result data is returned only for qu
ParameterArray.Add(1000.12); // REAL
ParameterArray.Add(True); // BOOL
ParameterArray.Add(OPI_Tools.GetCurrentDate()); // DATETIME
ParameterArray.Add(ПолучитьДвоичныеДанныеИзСтроки("Hello world")); // BLOB
ParameterArray.Add(Image); // BLOB
Result = OPI_SQLite.ExecuteSQLQuery(QueryText, ParameterArray, , Connection);