Definition at line 159 of file dbsqlite.py.
 
◆ __init__()
      
        
          | def python.dbsqlite.SQLHashValueIterator.__init__ | ( |  | self, | 
        
          |  |  |  | conn, | 
        
          |  |  |  | stmt, | 
        
          |  |  |  | indices | 
        
          |  | ) |  |  | 
      
 
Definition at line 160 of file dbsqlite.py.
  160     def __init__(self, conn, stmt, indices):
 
  165         self.getter = itemgetter(*indices)
 
 
 
◆ __iter__()
      
        
          | def python.dbsqlite.SQLHashValueIterator.__iter__ | ( |  | self | ) |  | 
      
 
 
◆ __next__()
      
        
          | def python.dbsqlite.SQLHashValueIterator.__next__ | ( |  | self | ) |  | 
      
 
Definition at line 173 of file dbsqlite.py.
  174         o = self.getter(self.iter.__next__())
 
  175         return pickle.loads(o)
 
 
 
 
◆ next()
      
        
          | def python.dbsqlite.SQLHashValueIterator.next | ( |  | self | ) |  | 
      
 
Definition at line 170 of file dbsqlite.py.
  171         o = self.getter(self.iter.
next())
 
  172         return pickle.loads(o)
 
 
 
 
◆ getter
      
        
          | python.dbsqlite.SQLHashValueIterator.getter | 
      
 
 
◆ iter
      
        
          | python.dbsqlite.SQLHashValueIterator.iter | 
      
 
 
The documentation for this class was generated from the following file: