Click here to Skip to main content
15,887,596 members
Home / Discussions / C#
   

C#

 
AnswerRe: Reflection for non public type in Unit Testing Pin
BillWoodruff2-Mar-16 2:53
professionalBillWoodruff2-Mar-16 2:53 
GeneralRe: Reflection for non public type in Unit Testing Pin
Member 91405152-Mar-16 19:37
Member 91405152-Mar-16 19:37 
QuestionInput format was not in correct format for int? Followed by "Invalid expression term try" Pin
Sam 91001-Mar-16 8:26
Sam 91001-Mar-16 8:26 
AnswerRe: Input format was not in correct format for int? Followed by "Invalid expression term try" Pin
Eddy Vluggen1-Mar-16 9:07
professionalEddy Vluggen1-Mar-16 9:07 
GeneralRe: Input format was not in correct format for int? Followed by "Invalid expression term try" Pin
Sam 91001-Mar-16 12:08
Sam 91001-Mar-16 12:08 
QuestionRe: Input format was not in correct format for int? Followed by "Invalid expression term try" Pin
Matt T Heffron1-Mar-16 13:35
professionalMatt T Heffron1-Mar-16 13:35 
AnswerRe: Input format was not in correct format for int? Followed by "Invalid expression term try" Pin
Sam 91003-Mar-16 4:28
Sam 91003-Mar-16 4:28 
QuestionWhy getting Error :Column name doesn't belong to table Pin
Veena Hosur29-Feb-16 23:32
Veena Hosur29-Feb-16 23:32 
I am getting error in the bold line. i have column name as paword but its showing column name doesnt belong to the table

C#
public Userdetails GetUserDetailsByEmailID(String EmailID)
       {
           Userdetails userInfobyEmailID = null;

           NpgsqlParameter[] parameters = new NpgsqlParameter[]    {
               new NpgsqlParameter("@email", EmailID)
           };

           using (DataTable table = Helper.ExecuteParamerizedSelectCommand("forgetpassword", CommandType.StoredProcedure, parameters))
           {
               //check if any record exist or not
               if (table.Rows.Count > 0)
               {
                   userInfobyEmailID = new Userdetails();

                   foreach (DataRow row in table.Rows)
                   {

                       userInfobyEmailID.paword = Utilities.Decrypt(row["paword"].ToString());
                   }

               }

               return userInfobyEmailID;
           }

       }

QuestionRe: Why getting Error :Column name doesn't belong to table Pin
Richard MacCutchan1-Mar-16 0:00
mveRichard MacCutchan1-Mar-16 0:00 
AnswerRe: Why getting Error :Column name doesn't belong to table Pin
Veena Hosur1-Mar-16 0:08
Veena Hosur1-Mar-16 0:08 
GeneralRe: Why getting Error :Column name doesn't belong to table Pin
Richard MacCutchan1-Mar-16 0:25
mveRichard MacCutchan1-Mar-16 0:25 
AnswerRe: Why getting Error :Column name doesn't belong to table Pin
Richard MacCutchan1-Mar-16 0:06
mveRichard MacCutchan1-Mar-16 0:06 
SuggestionRe: Why getting Error :Column name doesn't belong to table PinPopular
Sascha Lefèvre1-Mar-16 0:13
professionalSascha Lefèvre1-Mar-16 0:13 
GeneralRe: Why getting Error :Column name doesn't belong to table Pin
Luc Pattyn1-Mar-16 2:35
sitebuilderLuc Pattyn1-Mar-16 2:35 
GeneralRe: Why getting Error :Column name doesn't belong to table Pin
Sascha Lefèvre1-Mar-16 2:49
professionalSascha Lefèvre1-Mar-16 2:49 
QuestionData Access Layer for C# Pin
levanduyet_vn29-Feb-16 21:44
levanduyet_vn29-Feb-16 21:44 
AnswerRe: Data Access Layer for C# Pin
Richard MacCutchan29-Feb-16 21:55
mveRichard MacCutchan29-Feb-16 21:55 
GeneralRe: Data Access Layer for C# Pin
levanduyet_vn29-Feb-16 22:16
levanduyet_vn29-Feb-16 22:16 
GeneralRe: Data Access Layer for C# Pin
Richard MacCutchan29-Feb-16 22:32
mveRichard MacCutchan29-Feb-16 22:32 
AnswerRe: Data Access Layer for C# Pin
Pete O'Hanlon29-Feb-16 22:10
mvePete O'Hanlon29-Feb-16 22:10 
GeneralRe: Data Access Layer for C# Pin
levanduyet_vn29-Feb-16 22:14
levanduyet_vn29-Feb-16 22:14 
GeneralRe: Data Access Layer for C# Pin
Pete O'Hanlon29-Feb-16 22:30
mvePete O'Hanlon29-Feb-16 22:30 
GeneralRe: Data Access Layer for C# Pin
levanduyet_vn29-Feb-16 22:48
levanduyet_vn29-Feb-16 22:48 
AnswerRe: Data Access Layer for C# Pin
V.1-Mar-16 1:02
professionalV.1-Mar-16 1:02 
GeneralRe: Data Access Layer for C# Pin
levanduyet_vn1-Mar-16 1:16
levanduyet_vn1-Mar-16 1:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.