Subject | RE: [firebird-support] Why this query doesn't work? |
---|---|
Author | Leyne, Sean |
Post date | 2005-07-11T18:59:57Z |
> > Why do you think is a problem?fine
> >
> > I have plenty of UDFs which use CString for parameters. They work
> > for me.DECLARE EXTERNAL FUNCTION F_LEFT
>
> Do you mean input parameters, passed via xsqlda structure ?
> Can you send some example command ?
CSTRING(254),
INTEGER
RETURNS CSTRING(254)
ENTRY_POINT 'F_Left' MODULE_NAME 'aaUDFLib'
select
f_left( 'abcde', 2)
from rdb$Database;
Sean