Hello Friends!
Want to Post something i know might be very weird but this is how it goes.
In Java we use
RS.getString("FirstName");
to get the value of the column FirstName from the database.
If the valueis not detected then it shows null in the Text Box.
RS.getInt("StudentID");
to get the value of the Column StudentID in integer from the Database.
If the value is not detected then it displays 0.
I want to ask is there a way such that if there is no value then nothing is displayed on the Text Box instead of showing null for string columns and 0 which is showed for integer columns.
All Help Appreciated.