Hello,

I have a csv file that I need to be able to import into SQL. I have found some samples but none seem to work:
1)
csv_path = Server.MapPath( "./") & "\"

' --- SQL-String zum Neuerstellen einer Tabelle mit allen Daten aus der CSV-Datei
SQL = "SELECT * INTO TEMPTABLE FROM 'test.csv' IN " & csv_path & " ""TEXT;"""...