Can someone please explain to me how to select a specific column in an excel spreadsheet and import the information in that column to an sql table in a c# windows application. Let's say my excel spreadsheet is full of first and last names and dates. What I want to do is take column "A" and insert the names in that column into an sql table with the column name "first_name ". And I want to do the same thing for the last name column
Example
Let's say my excel spreadsheet has the following
Excel
Column A Column B Column C
jack johnson 4/2/2007
tim jackson 3/6/1995
ricky thomas 1/2/2090
bobby moore 4/2/1997
I want to take Column A and insert in the SQL table Person in the column firstname
Can you please help me with some code.
this is very important,
any help will be appreciated
Example
Let's say my excel spreadsheet has the following
Excel
Column A Column B Column C
jack johnson 4/2/2007
tim jackson 3/6/1995
ricky thomas 1/2/2090
bobby moore 4/2/1997
I want to take Column A and insert in the SQL table Person in the column firstname
Can you please help me with some code.
this is very important,
any help will be appreciated
Comment