SQLite Plugin¶
-
class
chepy_sqlite.Chepy_SQLite(*data)¶ This plugin allows interacting with SQLite3 database files
-
sqlite_dump_table(table: str)¶ Dump all data from a table
Parameters: table (str) – A valid table name Returns: The Chepy object. Return type: ChepyPlugin
-
sqlite_get_columns(table: str)¶ List all columns of a table
Parameters: table (str) – A valid table name Returns: The Chepy object. Return type: ChepyPlugin
-
sqlite_get_tables()¶ Get all table names from db
Returns: The Chepy object. Return type: ChepyPlugin
-
sqlite_query(query: str)¶ Run a raw sql query
Parameters: query (str) – The sql query string Returns: The Chepy object. Return type: ChepyPlugin
-