[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.0

Datareader Invalid Attempt to read when no data is present

Asked by Scripter25 in Programming for ASP.NET, .NET Framework 2.x, C# Programming Language

Tags: data, read, attempt, when, invalid

Why am I getting this message I checked the sql behind it and it is returning one row and there is a value in the first column so it should work with no problem.

        SqlConnection sqlConnection1 = new SqlConnection("Data Source=.\\SQLEXPRESS;AttachDbFilename=|DataDirectory|\\ASPNETDB.mdf;Integrated Security=True;User Instance=True");
        SqlCommand cmd = new SqlCommand();
        MembershipUser myObject = Membership.GetUser();
        string userIDD = myObject.ProviderUserKey.ToString();
        cmd.CommandText = "GetCustInfo";
        cmd.CommandType = CommandType.StoredProcedure;
        cmd.Connection = sqlConnection1;
        cmd.Parameters.AddWithValue("@userID", userIDD);
        sqlConnection1.Open();
        SqlDataReader DReader = cmd.ExecuteReader();
       
        profile_ID = Convert.ToInt32(DReader.GetValue(0));

The error I am getting is "Invalid Attempt to read when no data is present" and it is on
profile_ID = Convert.ToInt32(DReader.GetValue(0));

Here is the extended error


System.InvalidOperationException was unhandled by user code
  Message="Invalid attempt to read when no data is present."
  Source="System.Data"
  StackTrace:
       at System.Data.SqlClient.SqlDataReader.GetValue(Int32 i)
       at GetCustomerProfile.GetCustProfile(String UserID) in c:\Documents and Settings\Scott\My Documents\Visual Studio 2005\WebSites\AjaxSigns2\App_Code\GetCustomerProfile.cs:line 157
       at GetCustomerProfile..ctor(String UserID) in c:\Documents and Settings\Scott\My Documents\Visual Studio 2005\WebSites\AjaxSigns2\App_Code\GetCustomerProfile.cs:line 26
       at storeCheckout.Wizard1_FinishButtonClick1(Object sender, WizardNavigationEventArgs e) in c:\Documents and Settings\Scott\My Documents\Visual Studio 2005\WebSites\AjaxSigns2\storeCheckout.aspx.cs:line 151
       at System.Web.UI.WebControls.Wizard.OnFinishButtonClick(WizardNavigationEventArgs e)
       at System.Web.UI.WebControls.Wizard.OnBubbleEvent(Object source, EventArgs e)
       at System.Web.UI.WebControls.Wizard.WizardChildTable.OnBubbleEvent(Object source, EventArgs args)
       at System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args)
       at System.Web.UI.WebControls.Button.OnCommand(CommandEventArgs e)
       at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)
       at System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
       at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
       at System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
[+][-]08/29/07 11:05 PM, ID: 19797765Accepted 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: Programming for ASP.NET, .NET Framework 2.x, C# Programming Language
Tags: data, read, attempt, when, invalid
Sign Up Now!
Solution Provided By: JimBrandley
Participating Experts: 2
Solution Grade: A
 
[+][-]08/29/07 11:14 PM, ID: 19797804Assisted Solution

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

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

 
[+][-]08/29/07 11:19 PM, ID: 19797823Author 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.

 
[+][-]08/29/07 11:24 PM, ID: 19797836Expert 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.

 
[+][-]08/29/07 11:30 PM, ID: 19797857Author 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.

 
[+][-]08/30/07 12:18 AM, ID: 19798019Expert 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.

 
 
Loading Advertisement...
20091021-EE-VQP-81 / EE_QW_2_20070628