Lines Matching full:row
84 row=data.fetchone()
85 if row is not None:
86 return row[0]
92 row = data.fetchone()
93 if row is not None:
94 return row[0]
109 row=data.fetchone()
110 if row is not None:
111 return row[0]
121 row=data.fetchone()
122 if row is not None:
123 return row[0]
129 row = data.fetchone()
130 if row is not None:
131 return row[0]
147 row=data.fetchone()
148 if row is not None:
149 return row[0]
166 row = data.fetchone()
167 if row is not None:
168 val=row[0]
181 row = data.fetchone()
182 if row is not None:
183 val = row[0]
207 row=data.fetchone()
208 if row is not None:
209 return row[0]
227 for row in data:
229 col['name'] = row['name']
230 col['type'] = row['type']
231 col['notnull'] = row['notnull']
232 col['dflt_value'] = row['dflt_value']
233 col['pk'] = row['pk']
263 for row in data:
264 if row['version']:
266 col['version'] = row['version']
267 col['pkgarch'] = row['pkgarch']
268 col['checksum'] = row['checksum']
269 col['value'] = row['value']
296 self.connection.row_factory=sqlite3.Row