So what I\'m trying to do is convert an INTEGER type into a string from a jdbc to put in a jtextfield, unfortunately the String.OfValue cannot convert my Integer type but can fo
If I understand your problem correctly,
Integer patient_id = //get value of patient_id from database String add1 =patient_id.toString(); p_id.setText(add1);