[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.1

OLEDB exception Could not find installable ISAM.

Asked by ajay1feb in .NET, Microsoft Excel Spreadsheet Software, Access Coding/Macros

Tags: ado.net,c#,excel,ado.net

whenever i am trying to save excel sheet into ms access database 2003.it is throwing exception i dont know why?kindly help here.
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.ComponentModel;
using System.Data.OleDb;
using System.Data.SqlTypes;
using System.Drawing;
using System.Web.SessionState;
using System.Security.Permissions;
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Reflection;
using Microsoft.Office.Core;

code :

public bool LoadXlsFile(string StrFileName)
    {
        bool flag = false;
        string strSql = "";
        if (this.fileDialog.Value.ToString() != "")
        {
            try
            {
                string strReplace = "\\\\";
                string strPath = StrFileName.Replace("\\", strReplace);
                string strConn;
                strSql = "";
               
                strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + strPath + ";" + "Extended Properties=Excel 11.0;"; //You must use the $ after the object you reference in the spreadsheet
                System.Data.OleDb.OleDbDataAdapter myCommand = new System.Data.OleDb.OleDbDataAdapter("SELECT * FROM [CustomerMaster$]", strConn);
                DataSet myDataSet = new DataSet();
                myCommand.Fill(myDataSet, "ExcelInfo");
                DataTable dt = new DataTable();
                dt = myDataSet.Tables["ExcelInfo"];
                //loop through the excel sheet and insert contract number into tblorganizationentity
                if (dt.Rows.Count != 0)
                {
                    foreach (DataRow drow in dt.Rows)
                    {
                        if (drow[1].ToString().Trim() != "")
                        {
                            strSql = "Update CustomerMaster set CustomerNumber='" + drow[0].ToString().Trim() + "',CustomerName='" + drow[1].ToString().Trim() + "',CustomerAddressLine1='" + drow[2].ToString().Trim() + "' ,CustomerAddressLine2='" + drow[3].ToString().Trim() + "',CustomerCity='" + drow[4].ToString().Trim() + "',CustomerState='" + drow[5].ToString().Trim() + "',CustomerZipcode='" + drow[6].ToString().Trim() + "',CustomerBranchCode='" + drow[7].ToString().Trim() + "',CustomerBranchName='" + drow[8].ToString().Trim() + "' ";
                            AccessDB.DBExecuteNonQueryObject(strSql);
                            //cmd.CommandText = strSql;
                            //cmd.ExecuteNonQuery();

                        }
                    }
                    flag = true;
                }
                else
                {
                    this.lblOutput.Text = "Worksheet-Contract Not Found or No Data Available";

                }
               
            }
            catch (System.Exception ex)
            {
                this.lblOutput.Text = ex.Message;//"Worksheet-Sheet1 Not Found or No Data Available" ;
            }

        }

        return flag;
    }
[+][-]03/18/08 06:12 AM, ID: 21150575Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: .NET, Microsoft Excel Spreadsheet Software, Access Coding/Macros
Tags: ado.net,c#,excel,ado.net
Sign Up Now!
Solution Provided By: rorya
Participating Experts: 1
Solution Grade: B
 
[+][-]03/18/08 04:46 AM, ID: 21149931Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/18/08 04:57 AM, ID: 21150001Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/08 05:00 AM, ID: 21150019Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/18/08 05:35 AM, ID: 21150243Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/08 05:46 AM, ID: 21150335Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/18/08 05:52 AM, ID: 21150385Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/08 05:54 AM, ID: 21150418Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/08 06:05 AM, ID: 21150519Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/18/08 06:13 AM, ID: 21150579Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92 / EE_QW_2_20070628