Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
d2ab04ca
Commit
d2ab04ca
authored
Jun 01, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commented out PgConnection& references for now. May be using them
later. Vince.
parent
185b4272
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
5 deletions
+4
-5
src/interfaces/libpq++/CHANGES
src/interfaces/libpq++/CHANGES
+0
-1
src/interfaces/libpq++/pgcursordb.h
src/interfaces/libpq++/pgcursordb.h
+2
-2
src/interfaces/libpq++/pgtransdb.h
src/interfaces/libpq++/pgtransdb.h
+2
-2
No files found.
src/interfaces/libpq++/CHANGES
View file @
d2ab04ca
...
...
@@ -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
...
...
src/interfaces/libpq++/pgcursordb.h
View file @
d2ab04ca
...
...
@@ -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
...
...
src/interfaces/libpq++/pgtransdb.h
View file @
d2ab04ca
...
...
@@ -13,7 +13,7 @@
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: pgtransdb.h,v 1.
2 1999/05/23 01:04:0
3 momjian Exp $
* $Id: pgtransdb.h,v 1.
3 1999/06/01 02:37:3
3 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:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment