Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How import excel file into mysql DB using .net c# code
Posted

If this is something you'll do only once, consider using EXCEL string functions to generate 'INSERT' statements.
Eg:
A                     | B                  | C                  | D
FOO                   | BAR                | BAZ                | 
12                    | 15                 | Beer               | "INSERT INTO MY_TABLE(FOO, BAR, BAZ) VALUES (" + A2 + ", " + B2 + ", '" + C2 + "');" 
999                   | 4                  | Winw               | "INSERT INTO MY_TABLE(FOO, BAR, BAZ) VALUES (" + A3 + ", " + B3 + ", '" + C3 + "');" 


If you need to programatically read an EXCEL file using C#, see this link. Then you can connect to MYSQL and generate insert commands from your C# code.

Hope this helps,
Pablo.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900