Team, I’m building a custom package in intellij for database insert query, the code is working in intellij after importing sdk after build in gradle I see jdbc driver is missing from the A360 control room
Any insights would be grateful
Team, I’m building a custom package in intellij for database insert query, the code is working in intellij after importing sdk after build in gradle I see jdbc driver is missing from the A360 control room
Any insights would be grateful
Best answer by Tamil Arasu10
included the JDBC driver as a dependency. (build.gradle
file)
For example:
dependencies {
implementation 'your.jdbc.driver.group:jdbc-driver:version'
// other dependencies
}
please replace 'your.jdbc.driver.group:jdbc-driver:version'
with the actual coordinates of your JDBC driver.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.