30/12/2010, 09:37
|
| Moderador | | Fecha de Ingreso: marzo-2005 Ubicación: Monterrey, México
Mensajes: 7.321
Antigüedad: 19 años, 9 meses Puntos: 1360 | |
Respuesta: Como manjar un cursor en Python
Código Python:
Ver originalfilas = cur.fetchall() if filas: for fila in filas: print fila else: print "Inserta registro"
|