diff --git a/README.md b/README.md index df757412..40d08800 100644 --- a/README.md +++ b/README.md @@ -57,4 +57,5 @@ Thanks so much to everyone [who has contributed](https://github.com/codefori/vsc - [@wright4i](https://github.com/wright4i) - [@SanjulaGanepola](https://github.com/SanjulaGanepola) - [@bobcozzi](https://github.com/bobcozzi) -- [@Mohammed-Yaseen-Ali-2081](https://github.com/Mohammed-Yaseen-Ali-2081) \ No newline at end of file +- [@Mohammed-Yaseen-Ali-2081](https://github.com/Mohammed-Yaseen-Ali-2081) +- [@eric-simpson](https://github.com/eric-simpson) \ No newline at end of file diff --git a/extension/client/src/requests.ts b/extension/client/src/requests.ts index ba617e65..f3bc8fda 100644 --- a/extension/client/src/requests.ts +++ b/extension/client/src/requests.ts @@ -133,7 +133,7 @@ export function buildRequestHandlers(client: LanguageClient) { const dateStr = Date.now().toString().substr(-6); const randomFile = `R${table.substring(0, 3)}${dateStr}`.substring(0, 10); - const fullPath = `${config.tempLibrary}/${randomFile}`; + const fullPath = `QTEMP/${randomFile}`; console.log(`Temp OUTFILE: ${fullPath}`); @@ -161,7 +161,7 @@ export function buildRequestHandlers(client: LanguageClient) { const resultCode = outfileRes.code || 0; if (resultCode === 0) { - const data: any[] = await content.getTable(config.tempLibrary, randomFile, randomFile, true); + const data: any[] = await content.getTable('QTEMP', randomFile, randomFile, true); console.log(`Temp OUTFILE read. ${data.length} rows.`);