All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.dirigible.ide-operations.services.artefacts.data-sources.artefacts-data-sources.mjs Maven / Gradle / Ivy

There is a newer version: 10.6.41
Show newest version
import { query } from "sdk/db";
import { Utils } from "../Utils.mjs";

export const getArtefacts = () => {
    const sql = `
        SELECT 
        ARTEFACT_TYPE, ARTEFACT_LOCATION, ARTEFACT_NAME, ARTEFACT_PHASE, ARTEFACT_RUNNING, ARTEFACT_STATUS
        FROM DIRIGIBLE_DATA_SOURCES
    `;
    const resultset = query.execute(sql, [], "SystemDB");
    return resultset.map(e => Utils.getArtefactStatus(e));
};




© 2015 - 2025 Weber Informatics LLC | Privacy Policy