mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	commented out PgConnection& references for now. May be using them
later. Vince.
This commit is contained in:
		@@ -3,7 +3,6 @@
 | 
				
			|||||||
---------
 | 
					---------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
*	Rewrote libpq++.H
 | 
					*	Rewrote libpq++.H
 | 
				
			||||||
*	Added CVS IDs
 | 
					 | 
				
			||||||
*	Incremented shared library version to 3.0
 | 
					*	Incremented shared library version to 3.0
 | 
				
			||||||
*	Cleaned up makefiles
 | 
					*	Cleaned up makefiles
 | 
				
			||||||
*	Made examples use the installed versions of the library and header
 | 
					*	Made examples use the installed versions of the library and header
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,7 +13,7 @@
 | 
				
			|||||||
 * Copyright (c) 1994, Regents of the University of California
 | 
					 * 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:
 | 
					public:
 | 
				
			||||||
  PgCursor(const char* conninfo, const char* cursor);	// use reasonable & environment defaults
 | 
					  PgCursor(const char* conninfo, const char* cursor);	// use reasonable & environment defaults
 | 
				
			||||||
  // connect to the database with given environment and database name
 | 
					  // 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
 | 
					  ~PgCursor();	// close connection and clean up
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
  // Commands associated with cursor interface
 | 
					  // Commands associated with cursor interface
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,7 +13,7 @@
 | 
				
			|||||||
 * Copyright (c) 1994, Regents of the University of California
 | 
					 * 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:
 | 
					public:
 | 
				
			||||||
  PgTransaction(const char* conninfo);	// use reasonable & environment defaults
 | 
					  PgTransaction(const char* conninfo);	// use reasonable & environment defaults
 | 
				
			||||||
  // connect to the database with given environment and database name
 | 
					  // connect to the database with given environment and database name
 | 
				
			||||||
  PgTransaction(const PgConnection&);
 | 
					  // PgTransaction(const PgConnection&);
 | 
				
			||||||
  ~PgTransaction();	// close connection and clean up
 | 
					  ~PgTransaction();	// close connection and clean up
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
protected:
 | 
					protected:
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user