Cocould not find installable ISAM, installableisam

Source: Internet
Author: User

Cocould not find installable ISAM, installableisam

The program to read the EXCEL document, has been referred to the "Asp.net read Excel file 2" http://www.cnblogs.com/insus/archive/2011/05/05/2037808.html
This connection statement or method.

However, during this development, an exception occurs when you reference it again:"Cocould not find installable ISAM".

Strange!

After some materials and modifications, Insus. NET slightly changed the code:


The program can run again...

Public static string ExcelConnectionString (string filePhysicalPath) {string connectionString = string. empty; string fileExtension = filePhysicalPath. substring (filePhysicalPath. lastIndexOf (". ") + 1); switch (fileExtension) {case" xls ": connectionString = String. format ("Provider = Microsoft. jet. OLEDB.4.0; Data Source = {0}; Extended Properties = \ "Excel 8.0; HDR = YES; IMEX = 1 \" ", filePhysicalPath); break; case" xlsx ": connectionString = String. format ("Provider = Microsoft. ACE. OLEDB.12.0; Data Source = {0}; Extended Properties = \ "Excel 8.0; HDR = YES \" ", filePhysicalPath); break;} return connectionString;} Source Code

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.