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

Commit d2ab04c

Browse files
committed
commented out PgConnection& references for now. May be using them
later. Vince.
1 parent 185b427 commit d2ab04c

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

src/interfaces/libpq++/CHANGES

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
---------
44

55
* Rewrote libpq++.H
6-
* Added CVS IDs
76
* Incremented shared library version to 3.0
87
* Cleaned up makefiles
98
* Made examples use the installed versions of the library and header

src/interfaces/libpq++/pgcursordb.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Copyright (c) 1994, Regents of the University of California
1414
*
1515
*
16-
* $Id: pgcursordb.h,v 1.2 1999/05/23 01:04:01 momjian Exp $
16+
* $Id: pgcursordb.h,v 1.3 1999/06/01 02:37:33 momjian Exp $
1717
*
1818
*-------------------------------------------------------------------------
1919
*/
@@ -38,7 +38,7 @@ class PgCursor : public PgTransaction {
3838
public:
3939
PgCursor(const char* conninfo, const char* cursor); // use reasonable & environment defaults
4040
// connect to the database with given environment and database name
41-
PgCursor(const PgConnection&, const char* cursor);
41+
// PgCursor(const PgConnection&, const char* cursor);
4242
~PgCursor(); // close connection and clean up
4343

4444
// Commands associated with cursor interface

src/interfaces/libpq++/pgtransdb.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Copyright (c) 1994, Regents of the University of California
1414
*
1515
*
16-
* $Id: pgtransdb.h,v 1.2 1999/05/23 01:04:03 momjian Exp $
16+
* $Id: pgtransdb.h,v 1.3 1999/06/01 02:37:33 momjian Exp $
1717
*
1818
*-------------------------------------------------------------------------
1919
*/
@@ -35,7 +35,7 @@ class PgTransaction : public PgDatabase {
3535
public:
3636
PgTransaction(const char* conninfo); // use reasonable & environment defaults
3737
// connect to the database with given environment and database name
38-
PgTransaction(const PgConnection&);
38+
// PgTransaction(const PgConnection&);
3939
~PgTransaction(); // close connection and clean up
4040

4141
protected:

0 commit comments

Comments
 (0)