Ho utilizzato la seguente funzione per creare un formato "più leggibile" (presumibilmente) per il recupero dei dati da Oracle. Ecco la funzione:Creazione di un elenco di dizionari con cx_Oracle
def rows_to_dict_list(cursor):
"""
Create a list, each item contains a dictionary outlined like so:
{ "col1_name" : col1_data }
Each item in the list is technically one row of data with named columns,
represented as a dictionary object
For example:
list = [
{"col1":1234567, "col2":1234, "col3":123456, "col4":BLAH},
{"col1":7654321, "col2":1234, "col3":123456, "col4":BLAH}
]
"""
# Get all the column names of the query.
# Each column name corresponds to the row index
#
# cursor.description returns a list of tuples,
# with the 0th item in the tuple being the actual column name.
# everything after i[0] is just misc Oracle info (e.g. datatype, size)
columns = [i[0] for i in cursor.description]
new_list = []
for row in cursor:
row_dict = dict()
for col in columns:
# Create a new dictionary with field names as the key,
# row data as the value.
#
# Then add this dictionary to the new_list
row_dict[col] = row[columns.index(col)]
new_list.append(row_dict)
return new_list
Vorrei quindi utilizzare la funzione in questo modo:
sql = "Some kind of SQL statement"
curs.execute(sql)
data = rows_to_dict_list(curs)
#
for row in data:
item1 = row["col1"]
item2 = row["col2"]
# Do stuff with item1, item2, etc...
# You don't necessarily have to assign them to variables,
# but you get the idea.
Anche se questo sembra a svolgere abbastanza bene sotto i livelli di stress varia, mi chiedo se c'è una più efficiente o modo "pitonico" per farlo.
funziona come un fascino. Grazie! – Nitzle
Cosa succede se è necessario eseguire qualche post elaborazione sugli elementi di ciascuna riga. Quindi questo non funzionerebbe -> [dict (zip (colonne, riga)) per riga nel cursore] – ramu
@ramu, mi sembra una nuova domanda. Se qualcuno non l'ha già chiesto qui, forse dovresti. – senderle