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:
12
docs/en/examples/MySQL/CreateDatabase.txt
vendored
12
docs/en/examples/MySQL/CreateDatabase.txt
vendored
@@ -3,7 +3,15 @@
|
||||
Password = "12we...";
|
||||
Base = "";
|
||||
|
||||
ConnectionString = OPI_MySQL.GenerateConnectionString(Address, Base, Login, Password);
|
||||
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;
|
||||
|
||||
Base = "testbase1";
|
||||
|
||||
@@ -11,4 +19,4 @@
|
||||
// which will be closed after the function is executed.
|
||||
// If several operations are performed, it is desirable to use one connection,
|
||||
// previously created by the CreateConnection function()
|
||||
Result = OPI_MySQL.CreateDatabase(Base, ConnectionString);
|
||||
Result = OPI_MySQL.CreateDatabase(Base, ConnectionString, TLSSettings);
|
||||
|
||||
Reference in New Issue
Block a user