Package railo.runtime.query.caster

Source Code of railo.runtime.query.caster.TimeCast

package railo.runtime.query.caster;

import java.io.IOException;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Time;
import java.util.TimeZone;

import railo.commons.date.JREDateTimeUtil;
import railo.runtime.type.dt.DateTimeImpl;

public class TimeCast implements Cast{

  @Override
  public Object toCFType(TimeZone tz, int type, ResultSet rst, int columnIndex) throws SQLException, IOException {
    Time t = rst.getTime(columnIndex,JREDateTimeUtil.getThreadCalendar(tz));
    if(t==null) return null;
   
    return new DateTimeImpl(t.getTime(),false);
   
  }

}
TOP

Related Classes of railo.runtime.query.caster.TimeCast

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.