/**
  * Converts a Object into a java.sql.Time. If the Object is a Date, Number or a String of the form
  * hh:mm:ss, the conversion will return a new Time object, else null is returned.
  *
  * @returns the converted time or null
  */
 public Time convertNativeToTime(tsColumn coldef, Object o) throws tinySQLException {
   return ParserUtils.convertToTime(o);
 }