You've already forked OpenIntegrations
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:
13
docs/en/examples/MySQL/ExecuteSQLQuery.txt
vendored
13
docs/en/examples/MySQL/ExecuteSQLQuery.txt
vendored
@@ -6,8 +6,17 @@
|
||||
Password = "12we...";
|
||||
Base = "test_data";
|
||||
|
||||
ConnectionString = OPI_MySQL.GenerateConnectionString(Address, Base, Login, Password);
|
||||
Connection = OPI_MySQL.CreateConnection(ConnectionString);
|
||||
TLS = True;
|
||||
Port = 3306;
|
||||
ConnectionString = OPI_MySQL.GenerateConnectionString(Address, Base, Login, Password, Port);
|
||||
|
||||
If TLS Then
|
||||
TLSSettings = OPI_MySQL.GetTLSSettings(True);
|
||||
Else
|
||||
TLSSettings = Undefined;
|
||||
EndIf;
|
||||
|
||||
Connection = OPI_MySQL.CreateConnection(ConnectionString, TLSSettings);
|
||||
|
||||
// CREATE
|
||||
|
||||
|
||||
Reference in New Issue
Block a user