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