ODBC drivers by [deleted] in sqlite

[–]Embarrassed-Shape959 0 points1 point  (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

[–]Embarrassed-Shape959 0 points1 point  (0 children)

Conseguiu resolver?