I created the below method which i tested and does return the correct data. Where I am confused is what is the proper way to populate individual textboxes on a form with the results from this method?

Rather than using an objectdatasource and then binding a gridview to the objectdatasource that works but I need more freedom to customize the form.

public MemberDetails GetMemberDetail(int membershipgen)
   {
       SqlConnection con = new SqlConnection(connectionString);
       SqlCommand cmd = new SqlCommand("usp_getmemberdetail", con);
       cmd.CommandType = CommandType.StoredProcedure;

       cmd.Parameters.Add(new SqlParameter("@MEMBERSHIPGEN", SqlDbType.Int, 5));
       cmd.Parameters["@MEMBERSHIPGEN"].Value = membershipgen;

       try
       {
           con.Open();
           SqlDataReader reader = cmd.ExecuteReader(CommandBehavior.SingleRow);

           reader.Read();
           MemberDetails mem = new MemberDetails((int)reader["MEMBERSHIPGEN"], (string)reader["MEMBERSHIPID"], (string)reader["LASTNAME"],
                    (string)reader["FIRSTNAME"], (string)reader["SUFFIX"], (string)reader["MEMBERTYPESCODE"]);
           reader.Close();
           return mem;
       }
        catch (SqlException err)
       {
            throw new ApplicationException("Data error.");
        }
        finally
       {
           con.Close();
       }
link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Something along the lines of:

var memberDetails = GetMemberDetail(12345);
textBox1.Text = memberDetails.Prop1;
textBox2.Text = memberDetails.Prop2;
...

Also I would refactor this method and make sure that I properly dispose disposable resources by wrapping them in using statements to avoid leaking unmanaged handles:

public MemberDetails GetMemberDetail(int membershipgen)
{
    using (SqlConnection con = new SqlConnection(connectionString))
    using (SqlCommand cmd = con.CreateCommand())
    {
        con.Open();
        cmd.CommandText = "usp_getmemberdetail";
        cmd.CommandType = CommandType.StoredProcedure;
        cmd.Parameters.AddWithValue("@MEMBERSHIPGEN", membershipgen);
        using (SqlDataReader reader = cmd.ExecuteReader(CommandBehavior.SingleRow))
        {
            if (reader.Read())
            {
                return new MemberDetails(
                    reader.GetInt32(reader.GetOrdinal("MEMBERSHIPGEN")), 
                    reader.GetString(reader.GetOrdinal("MEMBERSHIPID")),
                    reader.GetString(reader.GetOrdinal("LASTNAME")),
                    reader.GetString(reader.GetOrdinal("FIRSTNAME")),
                    reader.GetString(reader.GetOrdinal("SUFFIX")),
                    reader.GetString(reader.GetOrdinal("MEMBERTYPESCODE"))
                );
            }
            return null;
        }
    }
}
link|improve this answer
GetMemberDetail shows that it does not exist in the current context. It is located within a .DLL named CLMembers is that why it shows it does not exist. So I tried var memberDetails = CLMembers.GetMemberDetail but the getmemberdetail part does not show up still – Jawaid Akhtar Jan 6 at 15:52
@JawaidAkhtar, GetMemberDetail is a non static method. This means that in order to invoke it you need to have an instance of the class that contains it. So if you are saying that this method is defined in a class called CLMembers you could do this: var memberDetails = new CLMembers().GetMemberDetail(12345);. Another possibility is to make it static. This way you will be able to invoke it without an instance: var memberDetails = CLMembers.GetMemberDetail(12345); – Darin Dimitrov Jan 6 at 15:54
1  
+1 for the cleanup on the dataaccess – rick schott Jan 6 at 16:03
@Darin Thanks for all your help I been taking classes and trying to learn c# but seems like no matter how much I read I just can not get a grasp of it. Thanks again and even though I do not understand your answer completely I do know that I need to hit the books even more :) – Jawaid Akhtar Jan 6 at 16:23
Darin I would wrap that awesome code sample around a Try Catch {} – DJ KRAZE Jan 6 at 18:13
show 1 more comment
feedback

Get the MemberDetails;

var memberDetails = GetMemberDetail(1);

Populate the textbox;

TextBox.Text = memberDetails.Property;
link|improve this answer
GetMemberDetail shows that it does not exist in the current context. It is located within a .DLL named CLMembers is that why it shows it does not exist. So I tried var memberDetails = CLMembers.GetMemberDetail but the getmemberdetail part does not show up still – Jawaid Akhtar Jan 6 at 15:52
@JawaidAkhtar - then you'll have to add a reference to that dll. This answer (and Darin's) answer the question you asked. – Adam Rackis Jan 6 at 16:05
feedback

Jawaid outside of the correct answers that were provided below I would also set SqlConnection con = null; and

SqlCommand cmd = null; outside the try and inside the try put the following 
con = new SqlConnection(connectionString); 

this way if there is an Error when doing cmd.Parameters.Add -- you can trap that exception also dispose of the reader object

if (reader != null)
{
  ((IDisposable)reader).Dispose(); 
  // somthing like that .. do the same for con and cmd objects or wrap them in a using() {}
}

cmd = new SqlCommand("usp_getmemberdetail", con);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add(new SqlParameter("@MEMBERSHIPGEN", SqlDbType.Int, 5));
cmd.Parameters["@MEMBERSHIPGEN"].Value = membershipgen; 
link|improve this answer
Thanks for your advice I am reading a c# book and it did not have that in there it showed the way I did it. I appreciate your help I will change it and Thanks for your explanation really appreciate it – Jawaid Akhtar Jan 6 at 16:02
Your Welcome I give you props for being able to at least be resourceful enough to attempt this on your own vs many others whom just want a quick answer without understanding why we post what we do in regards to suggestions advise and answers.. you will become a great programmer especially if you are reading the books to gain further knowledge good luck in your coding ventures. – DJ KRAZE Jan 6 at 18:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.