Is it possible to use the rs.getboolean method to get the value of tinyint(0/1) out of SQL? like this:
while (rs.next()) {
boolean noUse= rs.getBoolean(1);
}
If this does not work, I suppose you have to do something like this:
while (rs.next()) {
boolean noUse= rs.getByte(1)==1;
}
Thanks for helping me out.