Subject Firebird 1.5 use UDF
Author jeanafond
Hello,

I've a problem with my UDF in C since I have passed to V1.5 of Firebird.
I use this fonction:
int Month (ISC_QUAD * ib_date)
{
struct tm t;
isc_decode_date(ib_date, &t);
return t.tm_mon + 1;
}

in version 1.0 I had no problem but with this version I lose
connection to database when I use it.
Anyone can help? Thanks