Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
d2ab04ca
Commit
d2ab04ca
authored
26 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
commented out PgConnection& references for now. May be using them
later. Vince.
parent
185b4272
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/interfaces/libpq++/CHANGES
+0
-1
0 additions, 1 deletion
src/interfaces/libpq++/CHANGES
src/interfaces/libpq++/pgcursordb.h
+2
-2
2 additions, 2 deletions
src/interfaces/libpq++/pgcursordb.h
src/interfaces/libpq++/pgtransdb.h
+2
-2
2 additions, 2 deletions
src/interfaces/libpq++/pgtransdb.h
with
4 additions
and
5 deletions
src/interfaces/libpq++/CHANGES
+
0
−
1
View file @
d2ab04ca
...
@@ -3,7 +3,6 @@
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/interfaces/libpq++/pgcursordb.h
+
2
−
2
View file @
d2ab04ca
...
@@ -13,7 +13,7 @@
...
@@ -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/0
5/23 01:04:01
momjian Exp $
* $Id: pgcursordb.h,v 1.
3
1999/0
6/01 02:37:33
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -38,7 +38,7 @@ class PgCursor : public PgTransaction {
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/interfaces/libpq++/pgtransdb.h
+
2
−
2
View file @
d2ab04ca
...
@@ -13,7 +13,7 @@
...
@@ -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/0
5/23 01:04:0
3 momjian Exp $
* $Id: pgtransdb.h,v 1.
3
1999/0
6/01 02:37:3
3 momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -35,7 +35,7 @@ class PgTransaction : public PgDatabase {
...
@@ -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:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment