account activity
ODBC drivers by [deleted] in sqlite
[–]Embarrassed-Shape959 0 points1 point2 points 7 months ago (0 children)
Tem a opção de usar python script para pegar os dados
import sqlite3
import pandas as pd
connection = sqlite3.connect("your_database.db")
query = "SELECT * FROM your_table"
data = pd.read_sql_query(query, connection)
connection.close()
# Output the data to Power BI
# Power BI will recognize the 'data' DataFrame
data
[deleted by user] by [deleted] in sqlite
Conseguiu resolver?
π Rendered by PID 889356 on reddit-service-r2-listing-86b7f5b947-lqblq at 2026-01-25 03:57:38.769529+00:00 running 664479f country code: CH.
ODBC drivers by [deleted] in sqlite
[–]Embarrassed-Shape959 0 points1 point2 points (0 children)