Compiling a function

From: Matthew Hagerty <matthew(at)venux(dot)net>
To: pgsql-interfaces(at)postgreSQL(dot)org
Subject: Compiling a function
Date: 1999-04-20 06:41:36
Message-ID: 4.1.19990420023358.00b5c340@mail.venux.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

Greetings,

I have a very simple function I am trying to get working with 6.2.4. I
compiled the C program without any errors, but when I try to do a simple
query to see if it worked I get this error:

select bool2int(1 > 1);

ERROR: Load of file /usr/local/pgsql/procs/bool2int.o failed: dlopen
(/usr/local/pgsql/procs/bool2int.o) failed

I am running on FreeBSD-3.1-RELEASE with GCC 2.7.2.1. The command I issued
to compile was:

gcc -fpic -I../include -c bool2int.c

and the program is:

#include "../include/postgres.h"

int2 bool2int(bCondition)
bool bCondition;
{
if (bCondition)
return(1);
else
return(0);
}

I must say thank you to Jose Soares for providing me a solution, i.e. this
function, however I cannot get it to work.

Thanks,
Matthew Hagerty

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Matthew Hagerty 1999-04-20 08:19:00 Re: [INTERFACES] Compiling a function
Previous Message Nicolas Aragon 1999-04-20 00:53:36 Re: [INTERFACES] Delphi TDataset