How would I change my syntax below to return an Int instead of a data table. I dont need a datatable its just one value that will be returned in the query. New to this whole data access thing. Thanks for your help.

 public DataTable GetMemberID(string guid)
   {
       string strConectionString = ConfigurationManager.AppSettings["DataBaseConnection"];

       //set up sql
       string StrSql = "SELECT MemberID FROM MEMBERS WHERE (Guid = @GuidID)";

       DataTable dt = new DataTable();
       using (SqlDataAdapter daObj = new SqlDataAdapter(StrSql, strConectionString))
       {
           daObj.SelectCommand.Parameters.Add("@GuidID", SqlDbType.Int);
           daObj.SelectCommand.Parameters["@GuidID"].Value = guid;
           //fill data table
           daObj.Fill(dt);
       }
       return dt;

   }
link|improve this question

45% accept rate
I'm curious why people are downvoting this question. – Lynn Crumbling Dec 1 '11 at 19:14
2  
The question is very unclear. – lesderid Dec 1 '11 at 19:25
Unclear in what way ? – Black Light Dec 7 '11 at 15:00
feedback

4 Answers

You can use SqlCommand instead of SqlDataAdapter:

int memberId = 0;
using (var connection = new SqlConnection(conectionString))
using (var command = new SqlCommand(StrSql, connection))
{
    command.Parameters.Add("@GuidID", SqlDbType.Int).Value = guid;
    memberId = (int) command.ExecuteScalar();
}

return memberId;
link|improve this answer
Maybe its just an example code, but your parameter "guid" is not an int. I might suspect that its not a string either. If it is really a guid, pass it as such - or rename it. – Black Light Dec 7 '11 at 13:35
...and, you might like to use "Parameters.AddWithValue(...)", which will add a parameter with the type determined from whatever the value is (in your case, a String). – Black Light Dec 7 '11 at 15:10
feedback

Use SqlCommand and ExecuteScalar instead of filling a DataTable:

string StrSql = "SELECT MemberID FROM MEMBERS WHERE (Guid = @GuidID)";
using(var cmd = new SqlCommand(sql, connection))
{
   cmd.Parameters.Add("@GuidID", SqlDbType.Int).Value = guid;
   return (int)cmd.ExecuteScalar();
}
link|improve this answer
feedback
   public int GetMemberID(string guid) 
   { 
       string strConectionString = ConfigurationManager.AppSettings["DataBaseConnection"]; 

       //set up sql 
       string StrSql = "SELECT MemberID FROM MEMBERS WHERE (Guid = @GuidID)"; 

       DataTable dt = new DataTable(); 
       using (SqlDataAdapter daObj = new SqlDataAdapter(StrSql, strConectionString)) 
       { 
           daObj.SelectCommand.Parameters.Add("@GuidID", SqlDbType.Int); 
           daObj.SelectCommand.Parameters["@GuidID"].Value = guid; 
           //fill data table 
           daObj.Fill(dt); 
       } 
       return Convert.ToInt32(dt["MemberID"][0]); 

   } 
link|improve this answer
2  
Please note, I only modified your above code to return an int, instead of a datatable. A cleaner and more lightweight way to refactor this would be to switch over to using the SqlCommand.ExecuteScalar() function, which is specifically designed to only return one value, not an entire DataTable. – Lynn Crumbling Dec 1 '11 at 18:47
feedback

instead of:

 return dt;

use this:

if (dt.rows.count > 0)
   return (int)dt.rows[0][0];

The declaration also needs to be changed to:

 public int GetMemberID(string guid)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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