Click here to Skip to main content
15,899,754 members

Comments by arave0521 (Top 50 by date)

arave0521 23-Jun-14 10:23am View    
the error still the same. but i tried figure it out. and it works fine. but not sure the algorithm can be considered proper or not. here is my code

command.CommandText = "SELECT COUNT(*) FROM " + database +
".Metabolites " +
"WHERE MetaboliteID = " +
"'" + metNo + "'";
command.ExecuteNonQuery();
int count = int.Parse(command.ExecuteScalar().ToString());

if (count > 0)
{

}
else
{

}
arave0521 12-Jun-14 11:09am View    
yes. i tried. but still the same bug. The problem because of my algorithm. I still work out on it.
arave0521 28-May-14 4:21am View    
the problem started when it want to enter the for loop of metabolite class. I had insert the comment of the problem arise
arave0521 28-May-14 4:20am View    
I had insert the comment
arave0521 28-May-14 4:17am View    
I wrote it in one class before and use different methods, but the problem still the same