else if (type == Timestamp.class) {
SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
return (T) new Timestamp(pgParseDate(string, f).getTime());
}
else if (type == UByte.class) {
return (T) new UByte(string);
}
else if (type == UShort.class) {
return (T) new UShort(string);
}
else if (type == UInteger.class) {