> Company Table Structure
> create table company ( id serial PRIMARY KEY, comp_name varchar(100),
shortname varchar(20));
> Insert Function for company table
> create function insertcompany(varchar(100),varchar(20)) returns int4
as
> 'begin
> Insert into company (comp_name,shortname) values (
Hello,
I have installed PosgreSQL 7 on Red Hat Linux 6.1. I am developing a
CRM system using front hand "Enhydra" and back hand as "PostgreSql". I
have encountered the problem in developing a function. The error message
I receive is fmgr_info: function 18816: cache
lookup failed. The structure of