skip to main content
Welcome to Progress DataDirect for ODBC for TeamCity Driver: Version 8.0.0 : Connection string examples : Basic authentication method
  

Try DataDirect Drivers Now

Basic authentication method

This string includes only the information required to establish a connection. For detailed descriptions of these options, see Required options.
DRIVER=DataDirect 8.0 TeamCity;ServerName=server_name;User=user_name;Password=password;
[attribute=value[;...]];
where:
server_name
specifies the base URL of the TeamCity service to which you want to issue requests. For example, https://teamcity.company.com for enterprise accounts.
Note: Specifying an HTTPS URL for this option enables data encryption.
user_name
specifies the user name that is used to connect to your TeamCity service.
password
specifies the password used to connect to your TeamCity service.
attribute=value
specifies connection option settings. Multiple options are separated by a semi-colon.
Note: The User and Password options are not required to be stored in the connection string. They can also be sent separately by the application.
The following example shows how to establish a connection to a TeamCity service:
DRIVER=DataDirect 8.0 TeamCity;ServerName=https://teamcity.company.com;
User=jsmith;Password=secret;