"Arnaud" <[EMAIL PROTECTED]> writes: > EXEC SQL SELECT text(inet :ip_address) INTO :ip_result;
This is incorrect, and always has been, but 8.3 is more picky about it. Use a cast instead, eg > EXEC SQL SELECT text(:ip_address :: inet) INTO :ip_result; regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 2: Don't 'kill -9' the postmaster