8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a49278 commit b1e7127Copy full SHA for b1e7127
sqldev/src/main/java/org/utplsql/sqldev/runner/UtplsqlRunner.java
@@ -173,6 +173,10 @@ public static String getSysdate() {
173
return df.format(dateTime);
174
}
175
176
+ public boolean isRunning() {
177
+ return run != null && run.getEndTime() == null;
178
+ }
179
+
180
private void initRun() {
181
run = new Run(realtimeReporterId, connectionName, pathList);
182
run.setStartTime(getSysdate());
0 commit comments