From: | vishal saberwal <vishalsaberwal(at)gmail(dot)com> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | C Function Problem for bytea output |
Date: | 2005-12-28 19:34:25 |
Message-ID: | 3e74dc250512281134v21f0501fg31223dd58058e004@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
hi all,
I am trying to read a file from the File System.
The function compiles fine, the function is created fine in postgres but the
output is NULL/BLANK.
The file does exists and has chmod 777 permission.
PG_FUNCTION_INFO_V1(file_export);
Datum file_export(PG_FUNCTION_ARGS)
{
char *FilePath = PG_GETARG_CSTRING(0);
int32 FileLength = PG_GETARG_INT32(1);
FILE *fptr;
bytea *imdata;
char *rp;
imdata = (bytea *) palloc(FileLength+VARHDRSZ);
VARATT_SIZEP(imdata) = FileLength+VARHDRSZ;
rp = VARDATA(imdata);
if ((fptr = fopen(FilePath, "r")) == NULL)
PG_RETURN_NULL();
while (!feof(fptr))
{
fgets(rp,1024,fptr);
rp+=1024;
}
fclose(fptr);
PG_RETURN_BYTEA_P(imdata);
}
select * from file_export('/ResourceFS/Alarm_Arm.gif',1219);
file_export
-------------
(1 row)
I believe its something in the function but i can't spot the error.
thanks,
vish
From | Date | Subject | |
---|---|---|---|
Next Message | Ted Byers | 2005-12-28 19:44:43 | Re: Final stored procedure question, for now anyway |
Previous Message | Qingqing Zhou | 2005-12-28 19:12:54 | Re: [GENERAL] Running with fsync=off |