I haven't tried it yet, no. If I get a little more time I'll look into it, because I'm sure to want to it myself eventually.
-----Original Message----- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Thursday, 3 February 2005 11:31 To: CF-Talk Subject: Re: Blog app James, thanks! Have you ever used Coldfusion CFQUERY to create a function? My setup script loads the database tables via coldfusion, and I can't get the function to work creately when I create it via cfquery... - Rick James Holmes wrote: > As it turns out, it was an act of volunteering: > > CREATE OR REPLACE FUNCTION month (MyDate DATE) RETURN NUMBER IS BEGIN > RETURN extract(MONTH FROM MyDate); > END month; > / > > CREATE OR REPLACE FUNCTION year (MyDate DATE) RETURN NUMBER IS BEGIN > RETURN extract(YEAR FROM MyDate); > END year; > / > > > -----Original Message----- > From: Rick Root [mailto:[EMAIL PROTECTED] > Sent: Thursday, 3 February 2005 9:54 > To: CF-Talk > Subject: Re: Blog app > > James Holmes wrote: > >> >>Just wrap a PL/SQL function around a to_char() call with the >>appropriate date mask. No, that's not an act of volunteering :-) > > > Actually the way I do it in postgres is this (note, these are the > first functions I've ever written in any database language) > > CREATE OR REPLACE FUNCTION Month(timestamp) RETURNS double precision > AS 'select extract(month from $1)' > LANGUAGE SQL > IMMUTABLE > RETURNS NULL ON NULL INPUT; > > CREATE OR REPLACE FUNCTION Year(timestamp) RETURNS double precision > AS 'select extract(year from $1)' > LANGUAGE SQL > IMMUTABLE > RETURNS NULL ON NULL INPUT; > > > Since oracle supports extract() as well, it should be similarly easy. > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:192890 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

