001 package railo.runtime.query.caster; 002 003 import java.sql.ResultSet; 004 import java.sql.SQLException; 005 006 public class OtherCast implements Cast { 007 008 009 /** 010 * @see railo.runtime.query.caster.Cast#toCFType(int, java.sql.ResultSet, int) 011 */ 012 public Object toCFType(int type, ResultSet rst, int columnIndex) throws SQLException { 013 return rst.getObject(columnIndex); 014 } 015 016 }