From 9831617df2957fd0f52f94c6cc736e6135680436 Mon Sep 17 00:00:00 2001 From: Eric Simpson Date: Tue, 2 Jun 2026 12:09:05 -0400 Subject: [PATCH 1/2] use QTEMP for DSPFFD instead of ILEDITOR Signed-off-by: Eric Simpson --- extension/client/src/requests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.`); From b79093be13a7259aa826f51fbab24a0a68443ab6 Mon Sep 17 00:00:00 2001 From: Eric Simpson Date: Tue, 2 Jun 2026 12:11:38 -0400 Subject: [PATCH 2/2] update contributors Signed-off-by: Eric Simpson --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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