I am trying to execute a very simple example of using SQLOLEBD to retrieve records from a CSV file using VBScript. I am getting the error: Line: 4 Char: 1 Error: Invalid connection string attribute" Code: 80004005 Source: Microsoft OLD DB Provider for SQL Server Can somebody please straighten me out?
Set objConnection = CreateObject("ADODB.Connection")
Set objRecordSet = CreateObject("ADODB.Recordset")
objConnection.Open "Provider=SQLOLEDB; Data Source= C:\Users\public\; Extended Properties=""text;HDR=YES;FMT=Delimited"""
objRecordset.Open "SELECT * FROM employees.csv, objConnection, adOpenStatic, adLockOptimistic, adCmdText"
Do Until objRecordset.EOF
Wscript.Echo "name: " & objRecordset.Fields.Item("Name")
objRecordset.MoveNext
Loop
wscript.echo "Finished"
employees.csv
id,name,grade 1,"Ezequiel, Justin",1 2,Charlie Sheen,4 3,"Name, Your",8 4,Another Guy,16