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

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2025-10-20 19:41:52 +03:00
parent 080c59836f
commit 1120c732f0
3071 changed files with 19627 additions and 19627 deletions

View File

@@ -40,7 +40,7 @@ When performing multiple requests within a single connection, it is better to co
```bsl title="1C:Enterprise/OneScript code example"
TFN = GetTempFileName("sqlite");
Image = "https://hut.openintegrations.dev/test_data/picture.jpg";
Image = FunctionParameters["Picture"];
OPI_TypeConversion.GetBinaryData(Image); // Image - Type: BinaryData
Connection = OPI_SQLite.CreateConnection(TFN);
@@ -100,9 +100,9 @@ When performing multiple requests within a single connection, it is better to co
// With extension
If OPI_Tools.IsWindows() Then
Extension = "https://hut.openintegrations.dev/test_data/uuid.dll"; // URL, Path or Binary Data
Extension = FunctionParameters["SQLite_Ext"]; // URL, Path or Binary Data
Else
Extension = "https://hut.openintegrations.dev/test_data/uuid.so"; // URL, Path or Binary Data
Extension = FunctionParameters["SQLite_ExtLinux"]; // URL, Path or Binary Data
EndIf;
EntryPoint = "sqlite3_uuid_init";