看似不必要的python-sql类

时间:2013-05-01 01:36:14

标签: python sql function

我在python中遇到了一个函数,它说:

class _Sqlite3Cursor(object):

    def __init__(self, cursor):
        self.cursor = cursor

    def fetchone(self):
        return self.cursor.fetchone()

    def fetchall(self):
        return self.cursor.fetchall()

    def __iter__(self):
        return self

    def next(self):
        return self.cursor.next()

似乎fetchone和fetchall返回自己并且什么都不做,这个类有用吗?

0 个答案:

没有答案