fetchall()
restituisce tutti campi e tutti righe nel cursore. Dovrai scorrere le righe e accedere ai campi per ottenere i dati.
for row in result:
print row[0]
fetchall()
restituisce tutti campi e tutti righe nel cursore. Dovrai scorrere le righe e accedere ai campi per ottenere i dati.
for row in result:
print row[0]