1

我在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 自己返回,什么都不做,这个类有用吗?

4

0 回答 0