Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c6dd1e6

Browse files
committed
This one cleans the cursor problems ecpg had so far. It is now able
to understand cursors with variables. Michael
1 parent 79c8d2e commit c6dd1e6

File tree

10 files changed

+333
-231
lines changed

10 files changed

+333
-231
lines changed

src/interfaces/ecpg/ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,3 +270,10 @@ Mon Aug 3 17:23:18 CEST 1998
270270
- Fixed cursor handling
271271
- Set version to 2.3.5
272272
- Set library version to 2.4
273+
274+
Fri Aug 7 12:38:50 CEST 1998
275+
276+
- Fixed cursor handling once again
277+
- Added support for variables in cursor
278+
- Set version to 2.3.6
279+
- Set library version to 2.5

src/interfaces/ecpg/TODO

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
What happens to a cursor declaration with variables?
2-
31
The complete structure definition has to be listed inside the declare
42
section of the structure variable for ecpg to be able to understand it.
53

6-
Variable type bool has to be checked. I never used it so far.
4+
Variable type bool has to be tested. I never used it so far.
75

86
The error message for "no data" in an exec sql insert select from statement
97
has to be 100.

src/interfaces/ecpg/include/ecpglib.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ bool ECPGdisconnect(int, const char *);
1313

1414
void ECPGlog(const char *format,...);
1515

16-
bool ECPGdeclare(int, const char *, char *);
17-
bool ECPGopen(int, const char *);
18-
1916
#ifdef LIBPQ_FE_H
2017
bool ECPGsetdb(PGconn *);
2118

src/interfaces/ecpg/lib/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ include $(SRCDIR)/Makefile.global
44
PQ_INCLUDE=-I$(SRCDIR)/interfaces/libpq
55

66
SO_MAJOR_VERSION=2
7-
SO_MINOR_VERSION=4
7+
SO_MINOR_VERSION=5
88

99
PORTNAME=@PORTNAME@
1010

0 commit comments

Comments
 (0)