We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From testing with Data Caterer example PostgresPlanRun, if you set the following plan flags after generating data:
val config = configuration .generatedReportsFolderPath("/opt/app/data/report") .enableUniqueCheck(true) .enableRecordTracking(true) .enableDeleteGeneratedRecords(true) .enableGenerateData(false)
You get error: Caused by: java.sql.SQLException: No suitable driver found for jdbc:postgresql://host.docker.internal:5432/customer
Caused by: java.sql.SQLException: No suitable driver found for jdbc:postgresql://host.docker.internal:5432/customer
A quick fix is to add this line of code: Class.forName("org.postgresql.Driver")
Class.forName("org.postgresql.Driver")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
From testing with Data Caterer example PostgresPlanRun, if you set the following plan flags after generating data:
You get error:
Caused by: java.sql.SQLException: No suitable driver found for jdbc:postgresql://host.docker.internal:5432/customer
A quick fix is to add this line of code:
Class.forName("org.postgresql.Driver")
The text was updated successfully, but these errors were encountered: