It would be great, if fetch_lobs and fetch_decimal were supported as parameters for oracledb.connect() directly instead of only as global configuration parameters in oracledb.defaults that only take effect on the next oracledb.connect() call.
So I would like to be able to do:
db = oracledb.connect("user/pwd@db", fetch_lobs=False)
instead of:
oracledb.defaults.fetch_lobs = False
db = oracledb.connect("user/pwd@db")