DeliciousBluewhale87 you can try:
` import sqlite3
import pandas as pd
conn = sqlite3.connect('test_database')
sql_query = pd.read_sql_query ('''
SELECT
*
FROM products
''', conn)
sql_query.to_csv(...) `
No no, I mean now i can export a csv file into clearml-data. I was wondering if it possible to export directly from a sql database.
DeliciousBluewhale87 , Hi 🙂
You mean you created a dataset task on a certain server and you want to move that dataset task to another server?
I'm not aware of an ability to inject directly from an sql database. You can automate it by dumping from sql to csv, I assume