Hi I have a method which updates a MySQL table using a query. I\'m using a MS Visual Studio and phpmyadmin as the SQL client.
Method:
public static Memb
Your method is not returning anything, You need to return the Member Object.
If you do not need to return anything , just change your Method Signature like this,
public static Void updateMember(string un, string pass, string name, string surname,string mf, string dob, string add, string phone, string email)