Hi. I'm getting a syntax error in my vbscript trying to set a SQL variable to the following string value:
strSQL = "SELECT * INTO tblPaymentDetail FROM OPENDATASOURCE(Provider=Microsoft.ACE.OLEDB.12.0;" & _
"Data Source=C:\Documents and Settings\apprss\Desktop\Purchasing Work\PaymentFiles\PaymentExport\Payment\PaymentDetailExport.csv;" & _
"Persist Security Info=False;" & _
"Extended Properties='text;HDR=Yes;FMT=Delimited'"
cn.Execute strSQL
Does anyone see the syntax error here?
Thanks!
Scott
strSQL = "SELECT * INTO tblPaymentDetail FROM OPENDATASOURCE(Provider=Microsoft.ACE.OLEDB.12.0;" & _
"Data Source=C:\Documents and Settings\apprss\Desktop\Purchasing Work\PaymentFiles\PaymentExport\Payment\PaymentDetailExport.csv;" & _
"Persist Security Info=False;" & _
"Extended Properties='text;HDR=Yes;FMT=Delimited'"
cn.Execute strSQL
Does anyone see the syntax error here?
Thanks!
Scott