Building the Connection URL

Use the connection URL to supply connection information to the data store that you are accessing. The following is the format of the connection URL for the Simba Magento JDBC Connector:

jdbc:magento://;Host=[Endpoint];Auth_Type=Access Token;[Property1]=[Value];[Property2]=[Value];...

  • [Endpoint] is endpoint of the Magento server that you are connecting to.
  • [Property] and [Value] are any one of the other connection properties supported by the connector and the value for that property. At minimum, you must set the properties that provide your credentials for authentication.
  • For information about configuring authentication, see Configuring Authentication. For a list of the properties available in the connector, see Connector Configuration Options.

For example, to connect to Magento and authenticate the connection using an access token, you would use the following connection URL:

jdbc:magento://;Host=192.168.222.110/magento3;Auth_Type=Access Token;Auth_AccessToken=kP9PcyQ7prK2LwUMZMpFQ4R+5VE

Important:

Do not duplicate properties in the connection URL.