Hi All,
My script is getting hang while executing below script and it is not throwing any error.
TEMP_PROD_cur=TEMP_PROD_schema_conn.cursor()
sql="update APP_DB_CONNECT set DRIVER=:driver,URL=:url where APPNAME=:appname and CONNECT_NAME=:connect_name"
TEMP_PROD_cur.execute(sql,{'driver':driver_name,'url':jdbc_url,'appname':app_name,'connect_name':connect_name})
TEMP_PROD_schema_conn.commit()
I tried several ways to prepare update statement to execute but the script is getting hang in all the ways.
Please help to resolve this issue.