--- sidebar_position: 5 description: Generate connection string and other functions to work with MySQL in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, MySQL] --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Generate connection string Forms a connection string from the passed data `Function GenerateConnectionString(Val Address, Val Base = "", Val Login = "", Val Password = "", Val Port = "3306") Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | Address | --addr | String | ✔ | IP address or domain name of the server | | Base | --db | String | ✖ | Name of the database to connect | | Login | --login | String | ✖ | MySQL user | | Password | --pass | String | ✖ | MySQL password | | Port | --port | String | ✖ | Connection port | Returns: String - MySQL database connection string
```bsl title="1C:Enterprise/OneScript code example" Address = "127.0.0.1"; Login = "bayselonarrend"; Password = "12we..."; Base = ""; Result = OPI_MySQL.GenerateConnectionString(Address, Base, Login, Password); ``` ```bash oint mysql GenerateConnectionString \ --addr "127.0.0.1" \ --login ""bayselonarrend"" \ --pass "***" \ --port "3307" ``` ```batch oint mysql GenerateConnectionString ^ --addr "127.0.0.1" ^ --login ""bayselonarrend"" ^ --pass "***" ^ --port "3307" ``` ```json title="Result" "mysql://bayselonarrend:***@127.0.0.1:3306/" ```