Advertisement

03.18.2008 at 01:07AM PDT, ID: 23249491
[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!

OLEDB exception Could not find installable ISAM.

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;
    }
Start your free trial to view this solution
Question Stats
Zone: Software
Question Asked By: ajay1feb
Solution Provided By: rorya
Participating Experts: 1
Solution Grade: B
Views: 239
Translate:
Loading Advertisement...
03.18.2008 at 04:46AM PDT, ID: 21149931

Rank: Genius

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
03.18.2008 at 04:57AM PDT, ID: 21150001

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
03.18.2008 at 05:00AM PDT, ID: 21150019

Rank: Genius

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
03.18.2008 at 05:35AM PDT, ID: 21150243

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
03.18.2008 at 05:46AM PDT, ID: 21150335

Rank: Genius

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
03.18.2008 at 05:52AM PDT, ID: 21150385

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
03.18.2008 at 05:54AM PDT, ID: 21150418

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
03.18.2008 at 06:05AM PDT, ID: 21150519

Rank: Genius

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
03.18.2008 at 06:12AM PDT, ID: 21150575

Rank: Genius

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
03.18.2008 at 06:13AM PDT, ID: 21150579

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Loading Advertisement...
20080236-EE-VQP-29 / EE_QW_2_20070628