Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I am using .xlsx excel file as database for my WPF C# application and using connection string
MyConnection = new OleDbConnection("provider=Microsoft.Jet.OLEDB.4.0;Data Source='D:\\DBStudent.xlsx';Extended Properties=Excel 8.0;");

my code and connection for select query is working fine untill i dont close the .xlsx db file. and when i close it it shows some invalid table format exception in my code.

please help
thanks in advance.
Posted

Now it is working fine. Thanks a lot. :)
 
Share this answer
 
Comments
Richard C Bishop 4-Feb-13 9:54am    
You are welcome. For future reference, when commenting or asking a question on a solution, use the "Have a Question or Comment?" button. Do you see how you posted a comment as a solution to your own question?
You need to use this provider if you are using .xlsx files.

MyConnection = new OleDbConnection("provider=Microsoft.ACE.OLEDB.12.0;Data Source='D:\\DBStudent.xlsx';Extended Properties=Excel 12.0;")
 
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