im trying to execute a select command in c# (visual studio 2010) and it wont succeed but i know that it should because of the data given. the code looks...

NpgsqlCommand selectCommand = new NpgsqlCommand("Select * from \"public\".\"RawSoles\" where \"ARTNR\" = :artnr and \"Groesse_x0020_5\" = :groesse_x0020_5 ", DBConn);
           selectCommand.Parameters.Add(new NpgsqlParameter("artnr", NpgsqlDbType.Varchar));
           selectCommand.Parameters.Add(new NpgsqlParameter("groesse_x0020_5", NpgsqlDbType.Varchar));

           //selectCommand.Prepare();
           selectCommand.Parameters[0].Value = sole.Element("ARTNR").Value;
           selectCommand.Parameters[1].Value = sole.Element("Groesse_x0020_5").Value;
           selectCommand.Prepare();

           int count = selectCommand.ExecuteNonQuery();

           if (count > 0)
           {

my count gets -1 value. what the heck am i doing wrong? please help...

regards Niko

link|improve this question
Character comparison is case-sensitive in Postgres. Maybe that's why your query doesn't return something – a_horse_with_no_name Sep 14 '11 at 11:58
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.