1
0
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:
Marc G. Fournier
1998-06-03 13:55:15 +00:00
parent 0b09955da8
commit 2a74511bf4
9 changed files with 74 additions and 24 deletions

View File

@ -1,4 +1,3 @@
exec sql include sqlca;
exec sql whenever not found do break;
exec sql whenever sqlerror sqlprint;

View File

@ -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;