You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-23 22:05:15 +02:00
22 lines
656 B
Plaintext
Vendored
22 lines
656 B
Plaintext
Vendored
Address = "127.0.0.1";
|
|
Login = "bayselonarrend";
|
|
Password = "12we...";
|
|
Base = "";
|
|
|
|
ConnectionString = OPI_MySQL.GenerateConnectionString(Address, Base, Login, Password);
|
|
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);
|