Package railo.runtime.functions.dateTime

Source Code of railo.runtime.functions.dateTime.CreateODBCDate

/**
* Implements the CFML Function createodbcdate
*/
package railo.runtime.functions.dateTime;

import railo.runtime.PageContext;
import railo.runtime.ext.function.Function;
import railo.runtime.type.dt.DateImpl;
import railo.runtime.type.dt.DateTime;

public final class CreateODBCDate implements Function {
  public static DateTime call(PageContext pc , DateTime datetime) {
    return new DateImpl(datetime);
  }
}
TOP

Related Classes of railo.runtime.functions.dateTime.CreateODBCDate

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.