STRANGE INCREMENT IN MEMORY SIZE OF A PRECESS COMPILED WITH ECPG

From: "Maurizio" <maurizio(at)dreamtech-it(dot)com>
To: <pgsql-interfaces(at)postgresql(dot)org>
Subject: STRANGE INCREMENT IN MEMORY SIZE OF A PRECESS COMPILED WITH ECPG
Date: 2001-01-24 16:25:42
Message-ID: 001801c08622$700ec4c0$7394fea9@maurizio
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

Hello,

I have noted a strange increment in memory use on the system and I compiled a little test program to check it.

exec sql connect DB;
exec sql declare CUR fror select ............
while(1)
{
exec sql open CUR;
while(sqlca.sqlcode != 100)
exec sql fetch from CUR into :V1, V2;
exec sql close CUR;

delay(1);
}
exec sql disconnect DB;

Every 7 - 10 seconds the size of this proces increase by 8K.

I use QNX operating system and I noted this problem with POSTGRESQL 7.0.2 and 7.0.3.

Could someone help me, please ??

Thanks

Maurizio

Maurizio Cauci
DREAMTECH di Cauci Maurizio
Via Ronchetti, 2 - 21013 Gallarate (VA)
www.dreamtech-it.com

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Stathy Touloumis 2001-01-24 16:34:09 Perl DBD Driver
Previous Message Bruce Momjian 2001-01-24 16:09:04 Re: Re: [PATCHES] Re: Fixes and enhancements to JDBC driver (take 2)