HomeSort by relevance Sort by last modified time
    Searched refs:fetchall (Results 1 - 25 of 35) sorted by null

1 2

  /prebuilts/gdb/darwin-x86/lib/python2.7/sqlite3/
dump.py 31 for table_name, type, sql in schema_res.fetchall():
51 column_names = [str(table_info[1]) for table_info in res.fetchall()]
67 for name, type, sql in schema_res.fetchall():
  /prebuilts/gdb/linux-x86/lib/python2.7/sqlite3/
dump.py 31 for table_name, type, sql in schema_res.fetchall():
51 column_names = [str(table_info[1]) for table_info in res.fetchall()]
67 for name, type, sql in schema_res.fetchall():
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/
dump.py 31 for table_name, type, sql in schema_res.fetchall():
51 column_names = [str(table_info[1]) for table_info in res.fetchall()]
67 for name, type, sql in schema_res.fetchall():
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/
dump.py 31 for table_name, type, sql in schema_res.fetchall():
51 column_names = [str(table_info[1]) for table_info in res.fetchall()]
67 for name, type, sql in schema_res.fetchall():
  /prebuilts/gdb/darwin-x86/lib/python2.7/sqlite3/test/
hooks.py 68 result = con.execute(sql).fetchall()
74 result = con.execute(sql).fetchall()
94 result = con.execute(sql).fetchall()
108 """).fetchall()
194 con.execute("select 1 union select 2 union select 3").fetchall()
transactions.py 61 res = self.cur2.fetchall()
68 res = self.cur2.fetchall()
86 res = self.cur2.fetchall()
95 res = self.cur2.fetchall()
105 res = self.cur2.fetchall()
112 res = self.cur2.fetchall()
164 cur.fetchall()
regression.py 171 cur.execute("select 4+5").fetchall()
215 cur.fetchall()
307 values = [x[0] for x in cur.fetchall()]
dbapi.py 442 res = self.cu.fetchall()
444 res = self.cu.fetchall()
715 result = con.execute("select foo from test order by foo").fetchall()
855 for method_name in ("execute", "executemany", "executescript", "fetchall", "fetchmany", "fetchone"):
  /prebuilts/gdb/linux-x86/lib/python2.7/sqlite3/test/
hooks.py 68 result = con.execute(sql).fetchall()
74 result = con.execute(sql).fetchall()
94 result = con.execute(sql).fetchall()
108 """).fetchall()
194 con.execute("select 1 union select 2 union select 3").fetchall()
transactions.py 61 res = self.cur2.fetchall()
68 res = self.cur2.fetchall()
86 res = self.cur2.fetchall()
95 res = self.cur2.fetchall()
105 res = self.cur2.fetchall()
112 res = self.cur2.fetchall()
164 cur.fetchall()
regression.py 171 cur.execute("select 4+5").fetchall()
215 cur.fetchall()
307 values = [x[0] for x in cur.fetchall()]
dbapi.py 442 res = self.cu.fetchall()
444 res = self.cu.fetchall()
715 result = con.execute("select foo from test order by foo").fetchall()
855 for method_name in ("execute", "executemany", "executescript", "fetchall", "fetchmany", "fetchone"):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
hooks.py 68 result = con.execute(sql).fetchall()
74 result = con.execute(sql).fetchall()
94 result = con.execute(sql).fetchall()
108 """).fetchall()
194 con.execute("select 1 union select 2 union select 3").fetchall()
transactions.py 61 res = self.cur2.fetchall()
68 res = self.cur2.fetchall()
86 res = self.cur2.fetchall()
95 res = self.cur2.fetchall()
105 res = self.cur2.fetchall()
112 res = self.cur2.fetchall()
164 cur.fetchall()
regression.py 171 cur.execute("select 4+5").fetchall()
215 cur.fetchall()
307 values = [x[0] for x in cur.fetchall()]
dbapi.py 442 res = self.cu.fetchall()
444 res = self.cu.fetchall()
715 result = con.execute("select foo from test order by foo").fetchall()
855 for method_name in ("execute", "executemany", "executescript", "fetchall", "fetchmany", "fetchone"):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
hooks.py 68 result = con.execute(sql).fetchall()
74 result = con.execute(sql).fetchall()
94 result = con.execute(sql).fetchall()
108 """).fetchall()
194 con.execute("select 1 union select 2 union select 3").fetchall()
transactions.py 61 res = self.cur2.fetchall()
68 res = self.cur2.fetchall()
86 res = self.cur2.fetchall()
95 res = self.cur2.fetchall()
105 res = self.cur2.fetchall()
112 res = self.cur2.fetchall()
164 cur.fetchall()
regression.py 171 cur.execute("select 4+5").fetchall()
215 cur.fetchall()
307 values = [x[0] for x in cur.fetchall()]
dbapi.py 442 res = self.cu.fetchall()
444 res = self.cu.fetchall()
715 result = con.execute("select foo from test order by foo").fetchall()
855 for method_name in ("execute", "executemany", "executescript", "fetchall", "fetchmany", "fetchone"):
  /external/autotest/site_utils/
label_cleaner.py 75 rows = cursor.fetchall()
99 rows = cursor.fetchall()
  /external/autotest/tko/
db.py 189 return self.cur.fetchall()[0][0]
264 return self.cur.fetchall()
283 return self.cur.fetchall()
nightly.py 13 return [row[0] for row in perf.db_cur.fetchall()]
29 return dict(perf.db_cur.fetchall())
56 for testrunx, machx in perf.db_cur.fetchall():
    [all...]
  /external/autotest/contrib/
db_cleanup.py 193 rows = [x[0] for x in cursor.fetchall()]
  /external/autotest/database/
database_connection.py 56 return self._cursor.fetchall()
297 Execute a query and return cursor.fetchall(). try_reconnecting, if

Completed in 1179 milliseconds

1 2