Lines Matching refs:execute
45 con.execute("""
52 con.execute("""
94 con.execute("insert into gen_events values(?, ?, ?, ?)",
99 con.execute("insert into pebs_ll values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
123 count = con.execute("select count(*) from gen_events")
132 …commq = con.execute("select comm, count(comm) from gen_events group by comm order by -count(comm)")
139 …symbolq = con.execute("select symbol, count(symbol) from gen_events group by symbol order by -coun…
145 … dsoq = con.execute("select dso, count(dso) from gen_events group by dso order by -count(dso)")
156 count = con.execute("select count(*) from pebs_ll")
165 … commq = con.execute("select comm, count(comm) from pebs_ll group by comm order by -count(comm)")
172 …symbolq = con.execute("select symbol, count(symbol) from pebs_ll group by symbol order by -count(s…
177 dseq = con.execute("select dse, count(dse) from pebs_ll group by dse order by -count(dse)")
183 latq = con.execute("select lat, count(lat) from pebs_ll group by lat order by lat")