Skip to main content

MySQL Connection

Select MySQL when the target DB Connection uses Velox's MySQL method. MySQL adds a Version selector to the common endpoint, credential and transaction settings.

Settings

SettingDefaultRuntime effect
Server NameEmptyMySQL host or endpoint supplied to the provider.
Database NameEmptyInitial database selected when connecting.
User Name / PasswordEmptyCredentials for a least-privilege database identity. The saved DB Connection password is encrypted but remains sensitive.
VersionClient LibrarySelects the provider mode. The current setup form offers the modes from Client Library through Direct, according to the deployed database component. Confirm the chosen mode and required native library on every host.
Other parametersEmptyAdditional provider parameters. Treat these as code-like configuration: review, record and test each value.
Disconnect after useClearedCloses the connection after use when enabled.
Persistent connectionClearedEnables persistent/pool behaviour; minimum and maximum connections default to 0.
Transactions disabledClearedWhen enabled, prevents normal transactional execution.
Read / write isolationRead CommittedShared isolation selection; confirm support and semantics in the deployed provider/server version.

SQL Server authentication/driver/trust controls and ADO/ODBC provider/alias controls are hidden for this method.

Verification sequence

  1. Verify whether the deployment uses the client library or direct mode and install any required client component with the correct architecture.
  2. Create the DB Connection, select MySQL, then enter endpoint, database and credentials.
  3. Save and run Test.
  4. Build the smallest representative DB Definition and test it under the Velox runtime service identity.
  5. Exercise nulls, dates, character encoding, parameter binding and any writes used by the real integration.

Do not treat a successful connection as proof that MySQL-specific SQL, identifier quoting or transaction semantics are portable. If a shared Connection changes, use Check Usage and retest all consumers.