Veamos tengo este codigo:
Código Python:
Ver original#!/usr/bin/python
import MySQLdb
def __init__ (self):
pass
def Conn (self):
"""Connection to mysql"""
host = "localhost"
database= "test"
username= "root"
password= "1234"
db=MySQLdb.connect(host,username,password,database)
return db
db=Conn
cursor=db.cursor()
sql='SELECT * FROM test;'
cursor.execute(sql)
resultado=re.fetchall()
for registro in resultado:
print registro[0]
y estan simple que me dá verguenza hasta ponerlo, pero es que soy newie en python (hoy) y ya le estoy cogiendo coraje, no entiendo como algo tan simple me puede estar dando tantos problemas, me arroja:
Código:
Traceback (most recent call last):
File "~/src/reportingtool.py", line 18, in <module>
cursor=db.cursor()
AttributeError: 'function' object has no attribute 'cursor'
¿Alguien me explica que pasa?