feat: use parameterMode instead of isOutputParameter

This commit is contained in:
Nybkox
2024-11-28 13:16:30 +01:00
parent 7f9a30f568
commit 262b4732e3
6 changed files with 13 additions and 11 deletions

View File

@@ -13,7 +13,10 @@ SELECT
p.max_length AS charMaxLength,
p.precision AS precision,
p.scale AS scale,
p.is_output AS isOutputParameter,
CASE
WHEN p.is_output = 1 THEN 'OUT'
ELSE 'IN'
END AS parameterMode,
p.parameter_id AS parameterIndex,
s.name as schemaName
FROM

View File

@@ -8,7 +8,10 @@ SELECT
p.max_length AS charMaxLength,
p.precision AS precision,
p.scale AS scale,
p.is_output AS isOutputParameter,
CASE
WHEN p.is_output = 1 THEN 'OUT'
ELSE 'IN'
END AS parameterMode,
p.parameter_id AS parameterIndex
s.name as schemaName
FROM