Click here to Skip to main content
15,885,365 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
OK, I have some code and I need to write a list<> of integers onto an xlsx file. But am getting an error.
Here is the code.
C#
string fileName = @"C:\rhandx.xlsx";
 string connectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" +
          fileName + ";Extended Properties=\"Excel 8.0;HDR=NO;\"";
OleDbConnection con = new System.Data.OleDb.OleDbConnection(connectionString);
con.Open();
OleDbCommand cmd = new OleDbCommand();
cmd.Connection = con;
foreach (int coord in rhandlist)
{
    cmd.CommandText = ("INSERT INTO TABLE [SHEET1$] VALUES (coord)");
    cmd.ExecuteNonQuery();
}
con.Close();


rhandlist is a list with unknown no of int's. But I get an error saying my insert statement's syntax is wrong.
Posted
Updated 27-Nov-12 7:13am
v2
Comments
Richard C Bishop 27-Nov-12 12:24pm    
I think you need to remove the word "TABLE" from your insert statment. It should only be the table name.

1 solution

As Richcb pointed out, you need to remove the "TABLE" from your SQL statement. It should look like this:
C#
cmd.CommandText = ("INSERT INTO [SHEET1$] VALUES (coord)");

Make sure you keep the spacing right.
 
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