From: | Mike Alford <mikea(at)syscon-intl(dot)com> |
---|---|
To: | pgsql-interfaces(at)postgresql(dot)org |
Subject: | Embedded C SQL Error -600 |
Date: | 2003-03-11 12:11:55 |
Message-ID: | 200303111706.MAA02631@smtp.syscon-intl.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-interfaces |
Using PostgreSQL 7.3.1 on a customized Linux slackware host 8.0.0
I am receiving an error -600 from this bit of code:
EXEC SQL FETCH FROM test_cursor
INTO :mach_seq, :ss_mseq, :child_idx, :job, :net_pieces, :start_time;
printf ("b4 while test_cursor_select SQLCODE %d\n", SQLCODE);
while (SQLCODE != ECPG_NOT_FOUND)
// while (!SQLCODE)
{
EXEC SQL FETCH FROM test_cursor
INTO :mach_seq, :ss_mseq, :child_idx, :job, :net_pieces, :start_time;
EXEC SQL FETCH FROM test_cursor
INTO :mach_seq, :ss_mseq, :child_idx, :job, :net_pieces, :start_time;
}
in ecpgerrno.h this entry:
/* backend WARNINGs, starting at 600 */
#define ECPG_WARNING_UNRECOGNIZED -600
/* WARNING: (transaction aborted): queries ignored until END */
implies that a transaction with this code would be aborted, as well as not
being too informative about the nature of the problem.
The commented line '// while (!SQLCODE)' fits the style of existing code
better.
I get the output I would expect if there were no problem:
b4 while test_cursor_select SQLCODE -600
i 0 machseq 73374, ssmseq 3404562 child 0 job 410F 3 , net
pieces 0, start_time 2003-02-10 11:00:00
i 0 machseq 73374, ssmseq 3404562 child 1 job 410F 3 , net
pieces 254, start_time 2003-02-10 11:00:00
i 0 machseq 73374, ssmseq 3404562 child 2 job 410F 3 , net
pieces 508, start_time 2003-02-10 11:00:00
i 0 machseq 73374, ssmseq 3404562 child 3 job 410F 3 , net
pieces 762, start_time 2003-02-10 11:00:00
Is this an error that can be ignored? If not, what should I be looking for?
Heisenberg may have slept here
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2003-03-11 14:45:32 | Re: Roadmap for FE/BE protocol redesign |
Previous Message | Bruce Momjian | 2003-03-11 11:31:26 | Re: Beta schedule (was Roadmap for FE/BE protocol redesign) |