Application Integration
- Application Integration
- All Products
CREATE DATABASE `customer`; CREATE TABLE `customer_onboard` ( `dynamics_id` varchar(255) DEFAULT NULL, `salesforces_id` varchar(255) DEFAULT NULL, `name_entity` varchar(255) DEFAULT NULL, `process_id` varchar(255) DEFAULT NULL, `result_status` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
Property
| Description
|
---|---|
JDBC Connection URL
| The URL schema for the database. Use the following schema for the MySQL database:
jdbc:mysql://<Host>:<Port>/<Database>
For example:
jdbc:mysql://<Host>:<Port>/customer
|
JDBC Jar Directory
| The path to the JDBC driver
.jar file. For example, you can enter the following directory:
C:/jdbc
If you do not specify a directory path, the Secure Agent gets the
.jar file from the
process-engine/ext directory.
You must specify one of the following values for the JDBC connection to work successfully:
|
JDBC Driver Class Name
| The name of the JDBC driver class. Use the following MySQL driver class name:
com.mysql.jdbc.Driver
You must specify one of the following values for the JDBC connection to work successfully:
|
Schema
| The schema name is the database name. For example:
customer
|
User name
| User name to connect to the database.
|
Password
| Password to connect to the database.
|
Object Filter
| Object names. For example:
customer_onboard
|