The following table lists the connection string parameters for ODBC Driver for Shopify.
| Parameter | Description |
|---|---|
Access Token |
Use the parameter to specify the access token, that allows authorization of a specific application to access ODBC Driver for Shopify data. |
API Version |
Use the parameter to specify the API protocol version for the connection. The following values are assigned by default depending on the selected authentication type:
|
Authentication |
Use the option to specify the authentication type: AccessToken or CustomApp. The default value is AccessToken. |
Client ID |
Use the parameter, along with your User ID and Password, to authenticate with Shopify. To learn how to obtain the Client ID value, see Getting Parameters for Custom App Authentication. |
Client Secret |
Use the parameter, along with your User ID and Password, to authenticate with Shopify. To learn how to obtain the Client Secret value, see Getting Parameters for Custom App Authentication. |
Store |
Use the parameter to specify the URL of your Shopify store. |
Proxy Settings |
|
|
Proxy Port |
The port number used to connect to a proxy server. |
|
Proxy Server |
The proxy hostname or IP address. |
|
Proxy User ID |
The proxy server account ID. |
|
Proxy Password |
The proxy password. |
Advanced Settings |
|
|
Allow NULL strings |
To retrieve metadata, not all parameters according to MSDN can accept a null value. If NULL, the driver should return an error. But some 3rd-party tools pass NULL to the parameters. These options should be enabled for compatibility with such tools. |
|
Empty strings as NULL |
|
|
Connection Timeout |
The time (in seconds) to wait for a connection to open before terminating an attempt. The default value is 60. |
|
ODBC Behavior |
Used to set the behavior corresponding to the ODBC specification version that a third-party tool expects. The behavior of ODBC driver can be changed by setting a value for the SQL_ATTR_ODBC_VERSION attribute by calling the SQLSetEnvAttr function. But some third-party tools expect the driver to exhibit ODBC 2.x behavior, but forget to call SQLSetEnvAttr with the specified version or pass an incorrect value there. In this case, the required behavior can be explicitly specified in the Connection String by setting the ODBC Behavior parameter. The possible values are:
|
|
NormalizeDbNames |
Controls whether database object names are automatically converted to a standard format. |
|
RegionalNumberSettings |
Enables the use of local regional settings when converting numbers to strings. |
|
RegionalDateTimeSettings |
Enables the use of local regional settings when converting dates and times to strings. |
|
ReturnForeignKeys |
Use the option to specify whether the driver must return foreign keys. Retrieving metadata about foreign key constraints is a time-consuming operation; many third-party tools request foreign key metadata even when they do not actually need this information. Note that enabling the option may degrade performance of data access operations. The default value is False. |
|
String Types |
Sets the string value types returned by the driver as Default, Ansi or Unicode.
The parameter value should be changed if any third-party tool supports only Ansi string types or Unicode ones. |
|
QueryTimeout |
The time to wait for a query execution result before terminating and generating an error. |
|
UTC Dates |
Specifies whether all the datetime values retrieved from the data source are returned as UTC values or converted to local time and whether the date values specified on the application side (e.g., in SQL statements) are considered UTC or local. The default value is false. |
|
DRIVER={Devart ODBC Driver for Shopify};Store=mystore.shopify.com;Access Token=myaccesstoken |