Is it possible to use void value instead of string value in Select statement?
If yes, How?
MySqlCommand("SELECT * FROM image where ID='" + ExampleString() + "'", con);
MySqlCommand("SELECT * FROM image where ID='" + ExampleVoid() + "'", con);
Loading
Upendra Pratap ShahiPosted Aug 23, 2015, 12:33 PM
abdujalil chulievPosted Aug 23, 2015, 9:08 AM
private void Example()
{
}
Upendra Pratap ShahiPosted Aug 23, 2015, 4:11 AM