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:
@@ -31,9 +31,9 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "";
|
||||
|
||||
TLS = True;
|
||||
|
||||
@@ -32,9 +32,9 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "";
|
||||
|
||||
TLS = True;
|
||||
|
||||
@@ -36,12 +36,12 @@ Without specifying the `ForcifyResult` flag, result data is returned only for qu
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Image = FunctionParameters["Picture"];
|
||||
Image = "https://hut.openintegrations.dev/test_data/picture.jpg";
|
||||
OPI_TypeConversion.GetBinaryData(Image); // Image - Type: BinaryData
|
||||
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "test_data";
|
||||
|
||||
TLS = True;
|
||||
@@ -99,7 +99,7 @@ Without specifying the `ForcifyResult` flag, result data is returned only for qu
|
||||
|
||||
// SQL query from file
|
||||
|
||||
SQLFile = FunctionParameters["SQL2"]; // Binary Data, URL or path to file
|
||||
SQLFile = "https://hut.openintegrations.dev/test_data/TEST_DATA2.sql"; // Binary Data, URL or path to file
|
||||
|
||||
Result = OPI_MySQL.ExecuteSQLQuery(SQLFile, , , Connection);
|
||||
|
||||
|
||||
@@ -30,9 +30,9 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "";
|
||||
|
||||
Result = OPI_MySQL.GenerateConnectionString(Address, Base, Login, Password);
|
||||
|
||||
@@ -31,9 +31,9 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "";
|
||||
|
||||
TLS = True;
|
||||
|
||||
6
docs/en/md/MySQL/Orm/Add-records.mdx
vendored
6
docs/en/md/MySQL/Orm/Add-records.mdx
vendored
@@ -36,9 +36,9 @@ The list of available types is described on the initial page of the MySQL librar
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "testbase1";
|
||||
|
||||
TLS = True;
|
||||
@@ -54,7 +54,7 @@ The list of available types is described on the initial page of the MySQL librar
|
||||
Table = "testtable";
|
||||
RecordsArray = New Array;
|
||||
|
||||
Image = FunctionParameters["Picture"];
|
||||
Image = "https://hut.openintegrations.dev/test_data/picture.jpg";
|
||||
OPI_TypeConversion.GetBinaryData(Image); // Image - Type: BinaryData
|
||||
|
||||
CurrentDate = OPI_Tools.GetCurrentDate();
|
||||
|
||||
4
docs/en/md/MySQL/Orm/Add-table-column.mdx
vendored
4
docs/en/md/MySQL/Orm/Add-table-column.mdx
vendored
@@ -30,9 +30,9 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "testbase1";
|
||||
|
||||
TLS = True;
|
||||
|
||||
4
docs/en/md/MySQL/Orm/Clear-table.mdx
vendored
4
docs/en/md/MySQL/Orm/Clear-table.mdx
vendored
@@ -28,9 +28,9 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "testbase1";
|
||||
|
||||
TLS = True;
|
||||
|
||||
4
docs/en/md/MySQL/Orm/Create-database.mdx
vendored
4
docs/en/md/MySQL/Orm/Create-database.mdx
vendored
@@ -28,9 +28,9 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "";
|
||||
|
||||
TLS = True;
|
||||
|
||||
4
docs/en/md/MySQL/Orm/Create-table.mdx
vendored
4
docs/en/md/MySQL/Orm/Create-table.mdx
vendored
@@ -33,9 +33,9 @@ The list of available types is described on the initial page of the MySQL librar
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "testbase1";
|
||||
|
||||
TLS = True;
|
||||
|
||||
4
docs/en/md/MySQL/Orm/Delete-database.mdx
vendored
4
docs/en/md/MySQL/Orm/Delete-database.mdx
vendored
@@ -28,9 +28,9 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "";
|
||||
|
||||
TLS = True;
|
||||
|
||||
4
docs/en/md/MySQL/Orm/Delete-records.mdx
vendored
4
docs/en/md/MySQL/Orm/Delete-records.mdx
vendored
@@ -29,9 +29,9 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "test_data";
|
||||
|
||||
TLS = True;
|
||||
|
||||
4
docs/en/md/MySQL/Orm/Delete-table-column.mdx
vendored
4
docs/en/md/MySQL/Orm/Delete-table-column.mdx
vendored
@@ -29,9 +29,9 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "testbase1";
|
||||
|
||||
TLS = True;
|
||||
|
||||
4
docs/en/md/MySQL/Orm/Delete-table.mdx
vendored
4
docs/en/md/MySQL/Orm/Delete-table.mdx
vendored
@@ -28,9 +28,9 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "testbase1";
|
||||
|
||||
TLS = True;
|
||||
|
||||
4
docs/en/md/MySQL/Orm/Ensure-table.mdx
vendored
4
docs/en/md/MySQL/Orm/Ensure-table.mdx
vendored
@@ -35,9 +35,9 @@ This function does not update the data type of existing columns
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "testbase1";
|
||||
|
||||
TLS = True;
|
||||
|
||||
4
docs/en/md/MySQL/Orm/Get-records.mdx
vendored
4
docs/en/md/MySQL/Orm/Get-records.mdx
vendored
@@ -32,9 +32,9 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "testbase1";
|
||||
|
||||
TLS = True;
|
||||
|
||||
@@ -28,9 +28,9 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "testbase1";
|
||||
|
||||
TLS = True;
|
||||
|
||||
4
docs/en/md/MySQL/Orm/Update-records.mdx
vendored
4
docs/en/md/MySQL/Orm/Update-records.mdx
vendored
@@ -36,9 +36,9 @@ The list of available types is described on the initial page of the MySQL librar
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
Address = FunctionParameters["PG_IP"];
|
||||
Address = "127.0.0.1";
|
||||
Login = "bayselonarrend";
|
||||
Password = FunctionParameters["PG_Password"];
|
||||
Password = "12we...";
|
||||
Base = "test_data";
|
||||
|
||||
TLS = True;
|
||||
|
||||
Reference in New Issue
Block a user