From d2ab04ca73f8903fdb65b7bbc0aba86a787fee8c Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 1 Jun 1999 02:37:33 +0000 Subject: [PATCH] commented out PgConnection& references for now. May be using them later. Vince. --- src/interfaces/libpq++/CHANGES | 1 - src/interfaces/libpq++/pgcursordb.h | 4 ++-- src/interfaces/libpq++/pgtransdb.h | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/interfaces/libpq++/CHANGES b/src/interfaces/libpq++/CHANGES index da473a61f5..45ce0d0ac1 100644 --- a/src/interfaces/libpq++/CHANGES +++ b/src/interfaces/libpq++/CHANGES @@ -3,7 +3,6 @@ --------- * Rewrote libpq++.H -* Added CVS IDs * Incremented shared library version to 3.0 * Cleaned up makefiles * Made examples use the installed versions of the library and header diff --git a/src/interfaces/libpq++/pgcursordb.h b/src/interfaces/libpq++/pgcursordb.h index 1d8bad7f81..a324bca930 100644 --- a/src/interfaces/libpq++/pgcursordb.h +++ b/src/interfaces/libpq++/pgcursordb.h @@ -13,7 +13,7 @@ * Copyright (c) 1994, Regents of the University of California * * - * $Id: pgcursordb.h,v 1.2 1999/05/23 01:04:01 momjian Exp $ + * $Id: pgcursordb.h,v 1.3 1999/06/01 02:37:33 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -38,7 +38,7 @@ class PgCursor : public PgTransaction { public: PgCursor(const char* conninfo, const char* cursor); // use reasonable & environment defaults // connect to the database with given environment and database name - PgCursor(const PgConnection&, const char* cursor); + // PgCursor(const PgConnection&, const char* cursor); ~PgCursor(); // close connection and clean up // Commands associated with cursor interface diff --git a/src/interfaces/libpq++/pgtransdb.h b/src/interfaces/libpq++/pgtransdb.h index 80f17617e5..f873dd6156 100644 --- a/src/interfaces/libpq++/pgtransdb.h +++ b/src/interfaces/libpq++/pgtransdb.h @@ -13,7 +13,7 @@ * Copyright (c) 1994, Regents of the University of California * * - * $Id: pgtransdb.h,v 1.2 1999/05/23 01:04:03 momjian Exp $ + * $Id: pgtransdb.h,v 1.3 1999/06/01 02:37:33 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -35,7 +35,7 @@ class PgTransaction : public PgDatabase { public: PgTransaction(const char* conninfo); // use reasonable & environment defaults // connect to the database with given environment and database name - PgTransaction(const PgConnection&); + // PgTransaction(const PgConnection&); ~PgTransaction(); // close connection and clean up protected: