mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
From: Michael Meskes <meskes@topsystem.de>
+ Wed Jun 3 13:38:57 CEST 1998 + + - Made sqlca struct compatible with other systems. + - Give back a warning in case of truncation + - Changed the handling of OptimizableStmt since the old one broke + CREATE RULE + - Set library version to 2.3 + - Set version to 2.3.3
This commit is contained in:
@ -1,4 +1,3 @@
|
||||
exec sql include sqlca;
|
||||
|
||||
exec sql whenever not found do break;
|
||||
exec sql whenever sqlerror sqlprint;
|
||||
|
@ -48,6 +48,8 @@ exec sql end declare section;
|
||||
strcpy(msg, "open");
|
||||
exec sql open cur;
|
||||
|
||||
exec sql whenever not found do break;
|
||||
|
||||
while (1) {
|
||||
strcpy(msg, "fetch");
|
||||
exec sql fetch cur into :personal:ind_personal, :married:ind_married;
|
||||
|
Reference in New Issue
Block a user