Searched refs:sql (Results 1 – 4 of 4) sorted by relevance
| /linux-6.15/tools/perf/Documentation/ |
| H A D | db-export.txt | 29 3. Scripts that use a database (e.g. exported-sql-viewer.py) can maintain 31 before using them. e.g. function IsSelectable() in exported-sql-viewer.py
|
| H A D | perf-intel-pt.txt | 191 and to script exported-sql-viewer.py for an example of using the database.
|
| /linux-6.15/tools/perf/scripts/python/ |
| H A D | export-to-postgresql.py | 750 sql = "COPY " + table_name + " FROM '" + file.name + "' (FORMAT 'binary')" 751 do_query(query, sql) 760 sql = "COPY " + table_name + " FROM STDIN (FORMAT 'binary')" 761 res = PQexec(conn, toclientstr(sql))
|
| H A D | exported-sql-viewer.py | 2542 self.sql = sql 2553 self.query_limit = 0 if "$$last_id$$" in sql else 2 2565 stmt = self.sql.replace("$$last_id$$", str(self.last_id)) 3130 self.fetcher = SQLFetcher(glb, sql, prep, self.AddSample) 3660 def IsSelectable(db, table, sql = "", columns = "*"): argument 3685 def __init__(self, glb, sql, column_headers, parent=None): argument 3757 sql = "SELECT * FROM " + table_name 3760 sql = "SELECT * FROM " + table_name 4145 sql = ("SELECT comm, pid, tid, name," 4848 def SelectValue(self, sql): argument [all …]
|