无法从sql查询中获取预期结果选择python

无法从sql查询中获取预期结果选择python,python,mysql,sql,Python,Mysql,Sql,我试图从SQL中的特定行和列中进行选择。 我想找到一个特定的用户名行,然后从该行中选择访问id 这是我所有的代码 import sys, ConfigParser, numpy import MySQLdb as mdb from plaid.utils import json class SQLConnection: """Used to connect to a SQL database and send queries to it""" config_file = 'db

我试图从SQL中的特定行和列中进行选择。 我想找到一个特定的用户名行,然后从该行中选择访问id

这是我所有的代码

import sys, ConfigParser, numpy
import MySQLdb as mdb
from plaid.utils import json

class SQLConnection:
    """Used to connect to a SQL database and send queries to it"""
    config_file = 'db.cfg'
    section_name = 'Database Details'

_db_name = ''
_hostname = ''
_ip_address = ''
_username = ''
_password = ''

def __init__(self):
    config = ConfigParser.RawConfigParser()
    config.read(self.config_file)
    print "making"

    try:
        _db_name = config.get(self.section_name, 'db_name')
        _hostname = config.get(self.section_name, 'hostname')
        _ip_address = config.get(self.section_name, 'ip_address')
        _user = config.get(self.section_name, 'user')
        _password = config.get(self.section_name, 'password')
    except ConfigParser.NoOptionError as e:
        print ('one of the options in the config file has no value\n{0}: ' +
            '{1}').format(e.errno, e.strerror)
        sys.exit()


    self.con = mdb.connect(_hostname, _user, _password, _db_name)
    self.con.autocommit(False)
    self.con.ping(True)

    self.cur = self.con.cursor(mdb.cursors.DictCursor)


def query(self, sql_query, values=None):
        """
        take in 1 or more query strings and perform a transaction
        @param sql_query: either a single string or an array of strings
            representing individual queries
        @param values: either a single json object or an array of json objects
            representing quoted values to insert into the relative query
            (values and sql_query indexes must line up)
        """
        #  TODO check sql_query and values to see if they are lists
        #  if sql_query is a string
        if isinstance(sql_query, basestring):
            self.cur.execute(sql_query, values)
            self.con.commit()
        #  otherwise sql_query should be a list of strings
        else:
            #  execute each query with relative values
            for query, sub_values in zip(sql_query, values):
                self.cur.execute(query, sub_values)
            #  commit all these queries
            self.con.commit
        return self.cur.fetchall


def get_plaid_token(self,username):
        result= self.query("SELECT access_id FROM `users` WHERE `user_name` LIKE %s",[username])
        print type (result)
        return result


print SQLConnection().get_plaid_token("test")
我希望获取事务ID,但由于某些原因,“结果”返回

>

结果也是类型为“instancemethod”

请尝试更改此行:

return self.cur.fetchall


如果方法名称后面没有括号,则返回对该方法本身的引用,而不是运行该方法。

尝试更改此行:

return self.cur.fetchall


如果方法名称后面没有括号,则返回对该方法本身的引用,而不是运行该方法。

@gordonLinoff我将接受答案。“我必须等10分钟,然后才能回答。”戈登林诺夫:我会接受答案的。但是,我必须等待10分钟。自动提交和ping做什么?自动提交和ping做什么?
return self.cur.fetchall()