How do you map char/Character types?

You will notice that these data types are missing from the JDBC specification, in that there is no setChar/getChar methods. Many JDBC drivers have filled this hole in their own proprietary ways. Our code is based on generic JDBC and we had to improvise for this missing data type. We support char/Character using setString/getString.