Код: Выделить всё
import polars as ps
import cx_Oracle as oracle
user = XXX
host = XXX
port = XXX
service_name = XXX
password = XXX
dsnStr = oracle.makedsn(host, port, service_name)
gds_con = oracle.connect(user, password, dsnStr)
query = XXX
Код: Выделить всё
result = ps.read_database(query, gds_con)
Код: Выделить всё
'cx_Oracle.Connection' object has no attribute 'split'
Подробнее здесь: https://stackoverflow.com/questions/761 ... ives-error