```python import sqlite3 con = sqlite3.connect("Chinook.db") cursor = con.cursor() cursor.execute("SELECT name FROM sqlite_master WHERE type='table';") tables = [row[0] for row in cursor.fetchall() if not row[0].startswith("sqlite_")] print("Dialect: sqlite") print(f"Available tables: {tables}") cursor.execute("SELECT * FROM Artist LIMIT 5;") print(f"Sample output: {cursor.fetchall()}") con.close() ```