Connecting to Oracle RDS
I am trying to connect to Oracle using AWS lambda and python. These are the step I followed. (Everything has done EC2 instance) Downloaded the instantclient-basic-linux.x64-12.2.0.1.0.zip and instantclient-sdk-linux.x64-12.2.0.1.0.zip Created this folder structure ~/lambda/lib/ Extracted the zip files in the ~/lambda/lib/ copied the libaio.so.1.0.1 from /lib64/ into ~/lambda/lib/ Created symbolic link of libaio.so.1.0.1 as libaio.so in ~/lambda using pip installed cx_Oracle in ~/lambda written below index.py script in ~lambda ` import cx_Oracle def handler(event, context): message = "" cursor