Open
Description
This is very straightforward in Python
import pandas as pd
from sqlalchemy import create_engine
engine = create_engine('postgresql://username:password@localhost:5432/mydatabase')
df=pd.read_csv('example.csv')
df.to_sql('table_name', engine)
It would be very useful to have this in the Kotlin ecosystem.