In vb.net, I created one upload button in windows form. When I click that button, I want to upload csv file to MS Access database. Can anyone please help me with coding in vb.net to upload csv file.
Printable View
In vb.net, I created one upload button in windows form. When I click that button, I want to upload csv file to MS Access database. Can anyone please help me with coding in vb.net to upload csv file.
First of all. You don't upload it you import it. If the access database is on a web server then you upload and then import. Basically you will need to write code to read the csv file and then insert each record into your database.