We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2204711 commit 1fe773eCopy full SHA for 1fe773e
1 file changed
src/java/eu/rssw/pct/oedoc/JsonDocumentation.java
@@ -530,6 +530,7 @@ private Schema readDBSchema() throws IOException {
530
File outFile = dumpSchema(conn);
531
dbs[cnt++] = new DatabaseWrapper(
532
DumpFileUtils.getDatabaseDescription(outFile.toPath(), conn.getDbName()));
533
+ outFile.delete();
534
}
535
536
Schema schema = new Schema(dbs);
@@ -567,9 +568,12 @@ private File dumpSchema(PCTConnection conn) {
567
568
569
PCTDumpSchema run = new PCTDumpSchema();
570
run.bindToOwner(this);
571
+ run.setDestFile(outFile);
572
run.setDlcHome(getDlcHome());
573
+ run.setCpInternal("utf-8");
574
run.setCpStream("utf-8");
- run.setDestFile(outFile);
575
+ run.setCpCase("basic");
576
+ run.setCpColl("basic");
577
run.addDBConnection(conn);
578
run.execute();
579
0 commit comments