[EMAIL PROTECTED] writes:
> ERROR: Load of file /ens/klimann/PostgreSQL/entier.o failed: Exec format error
.o? Did you convert this file into a shared library? I'd expect .so or
.sl depending on platform...
regards, tom lane
On Thu, Feb 22, 2001 at 11:01:11PM -0500, Tom Lane wrote:
> [EMAIL PROTECTED] writes:
> > I have the following type :
> > ...
> > How can I insert a value in this table ?
>
> INSERT INTO entiers VALUES('1234') should work fine.
>
I have tried and I have this message :
ex1=# insert into entiers
[EMAIL PROTECTED] writes:
> I have the following type :
> ...
> How can I insert a value in this table ?
INSERT INTO entiers VALUES('1234') should work fine.
BTW, change the "malloc" calls to "palloc" if you don't want to suffer
from severe memory leakage problems. Otherwise the code seems OK,