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-04-02 14:56:42 +03:00
parent 95dac54278
commit 5742dc08d6
21 changed files with 7051 additions and 6937 deletions

View File

@@ -40,6 +40,18 @@ import TabItem from '@theme/TabItem';
Result = OPI_MySQL.CreateConnection(ConnectionString);
OPI_MySQL.CloseConnection(Result);
// With TLS
Address = "api.athenaeum.digital";
Port = "3307";
ConnectionString = OPI_MySQL.GenerateConnectionString(Address, Base, Login, Password, Port);
TLSSettings = OPI_MySQL.GetTlsSettings(False);
Result = OPI_MySQL.CreateConnection(ConnectionString, TLSSettings);
OPI_MySQL.CloseConnection(Result);
```

View File

@@ -58,7 +58,7 @@ Without specifying the `ForcifyResult` flag, result data is returned only for qu
|type TINYINT UNSIGNED,
|date DATE,
|time TIME,
|data BLOB
|data MEDIUMBLOB
|);";
Result = OPI_MySQL.ExecuteSQLQuery(QueryText, , , Connection);