Dear Frends I have this code but I don't know the SQL Code to copy data from
CSV file to new table in the current access data base
What is SQl Command needed???
Imports System.Data.Ole Db
Dim cn As New OleDbConnection
cn.ConnectionSt ring = "Provider=Micro soft.Jet.OLEDB. 4.0;Data
Source=test.mdb ;Persist Security Info=False"
cn.Open()
Dim cmd As New OleDbCommand
cmd.CommandText = ("I need sql Command to copy data from CSV to New table in
the current data base ")
cmd.Connection = cn
cmd.ExecuteNonQ uery()
cn.Close()
CSV file to new table in the current access data base
What is SQl Command needed???
Imports System.Data.Ole Db
Dim cn As New OleDbConnection
cn.ConnectionSt ring = "Provider=Micro soft.Jet.OLEDB. 4.0;Data
Source=test.mdb ;Persist Security Info=False"
cn.Open()
Dim cmd As New OleDbCommand
cmd.CommandText = ("I need sql Command to copy data from CSV to New table in
the current data base ")
cmd.Connection = cn
cmd.ExecuteNonQ uery()
cn.Close()
Comment