I wrote and compiled and linked a C function, add_float, which returns
float in C like following:
PG_FUNCTION_INFO_V1(add_float);
Datum
add_float(PG_FUNCTION_ARGS)
{
float arg = PG_GETARG_FLOAT8(0);
PG_RETURN_FLOAT8(arg + 10);
}
After having loaded it into database, executed the SQL command, "s
very much.
zhuge xiao <[EMAIL PROTECTED]>
Tom Lane wrote:
>"zhuge xiao" <[EMAIL PROTECTED]> writes:
>
>
>>could not connect to server: Permission denied
>>Is the server running locally and accepting connections
The following bug has been logged online:
Bug reference: 2118
Logged by: zhuge xiao
Email address: [EMAIL PROTECTED]
PostgreSQL version: 8.0.3
Operating system: Linux ( FC4 )
Description:could not connect to server
Details:
Help me!
I have edited the program