I am using following connectstring and it works with CSV delimmited file
ConnectionStrin g = "Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & App.Path & ";" & _
"Extended Properties=""te xt;HDR=YES;FMT= FixedLength"""
But when I delimited my file by caret(^) character rather than comma(,), it wont work. I tried various example as followed, but nothing is working
ConnectionStrin g = "Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & App.Path & ";" & _
"Extended Properties=""te xt;HDR=YES;FMT= Delimited(^)"""
ConnectionStrin g = "Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & App.Path & ";" & _
"Extended Properties=""te xt;HDR=YES;FMT= CustomDelimited (^)"""
Let me know whats wrong I am doing?
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.712 / Virus Database: 468 - Release Date: 06/27/2004
ConnectionStrin g = "Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & App.Path & ";" & _
"Extended Properties=""te xt;HDR=YES;FMT= FixedLength"""
But when I delimited my file by caret(^) character rather than comma(,), it wont work. I tried various example as followed, but nothing is working
ConnectionStrin g = "Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & App.Path & ";" & _
"Extended Properties=""te xt;HDR=YES;FMT= Delimited(^)"""
ConnectionStrin g = "Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & App.Path & ";" & _
"Extended Properties=""te xt;HDR=YES;FMT= CustomDelimited (^)"""
Let me know whats wrong I am doing?
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.712 / Virus Database: 468 - Release Date: 06/27/2004
Comment