пытаюсь понять как переадть аргументы
parent
27c2a6eb07
commit
dde91665ef
|
|
@ -77,11 +77,11 @@ class SimpleDB:
|
||||||
WHERE a.object_name = UPPER(:proc_name)
|
WHERE a.object_name = UPPER(:proc_name)
|
||||||
ORDER BY a.overload, a.position
|
ORDER BY a.overload, a.position
|
||||||
"""
|
"""
|
||||||
procedure_name = 'P_RK_SEND_JSON_LIST_FACEACC'
|
|
||||||
cursor.execute(query, proc_name=procedure_name)
|
cursor.execute(query, proc_name='P_RK_SEND_JSON_LIST_FACEACC')
|
||||||
results = cursor.fetchall()
|
results = cursor.fetchall()
|
||||||
|
|
||||||
print(f"Метаданные процедуры {procedure_name}:")
|
print(f"Метаданные процедуры 'P_RK_SEND_JSON_LIST_FACEACC:")
|
||||||
for row in results:
|
for row in results:
|
||||||
print(f" Параметр: {row[0]}")
|
print(f" Параметр: {row[0]}")
|
||||||
print(f" Тип данных: {row[1]}")
|
print(f" Тип данных: {row[1]}")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue