skip to Main Content

Call Postgresql Proocedure using python

Trying to run a postgresql procedure using python but not able to rectify the error.. def call_procedure_without_arguments(): try: connection = create_connection() if connection: cursor = connection.cursor() # Call the procedure without any input arguments procname = "call proc_test" cursor.callproc(procname) results…

VIEW QUESTION
Back To Top
Search