Click here to Skip to main content
15,907,326 members

Comments by Riva Nicole Calinawan (Top 2 by date)

Riva Nicole Calinawan 14-Jan-21 21:17pm View    
I already changed the identifier.

This query works

string Query9 = "select*from portal.student_table WHERE Course = '" + program.Text + "' AND Year = '" + Year.Text + "';";

But when having 2 AND Conditional statements it does not work, it does not show any data in the listview. This is the query.

string Query9 = "select*from portal.student_table WHERE Course = '" + program.Text + "' and Year = '" + Year.Text + "' and Section = '" + Section.Text + "'";
Riva Nicole Calinawan 14-Jan-21 11:46am View    
Does it work with label.text?