You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-27 22:18:36 +02:00
Main build (Jenkins)
This commit is contained in:
20
docs/en/examples/MSSQL/CreateConnection.txt
vendored
Normal file
20
docs/en/examples/MSSQL/CreateConnection.txt
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
|
||||
ConnectionString = OPI_MSSQL.GenerateConnectionString(Address, , Login, Password);
|
||||
Result = OPI_MSSQL.CreateConnection(ConnectionString);
|
||||
|
||||
OPI_MSSQL.CloseConnection(Result);
|
||||
|
||||
// With TLS
|
||||
|
||||
Address = "api.athenaeum.digital";
|
||||
Port = "1434";
|
||||
|
||||
ConnectionString = OPI_MSSQL.GenerateConnectionString(Address, , Login, Password, Port);
|
||||
TLSSettings = OPI_MSSQL.GetTlsSettings(False);
|
||||
|
||||
Result = OPI_MSSQL.CreateConnection(ConnectionString, TLSSettings);
|
||||
|
||||
OPI_MSSQL.CloseConnection(Result);
|
||||
6
docs/en/examples/MSSQL/GenerateConnectionString.txt
vendored
Normal file
6
docs/en/examples/MSSQL/GenerateConnectionString.txt
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Base = "";
|
||||
|
||||
Result = OPI_MSSQL.GenerateConnectionString(Address, Base, Login, Password);
|
||||
Reference in New Issue
Block a user