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
fa0f2416
Commit
fa0f2416
authored
Feb 07, 1999
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add PQresStatus() function to avoid direct access to pgresStatus[] array,
making life easier for Windoids...
parent
f2802669
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
11 deletions
+23
-11
src/interfaces/libpgtcl/pgtclCmds.c
src/interfaces/libpgtcl/pgtclCmds.c
+2
-2
src/interfaces/libpq/fe-exec.c
src/interfaces/libpq/fe-exec.c
+10
-1
src/interfaces/libpq/libpq-fe.h
src/interfaces/libpq/libpq-fe.h
+9
-7
src/interfaces/libpq/libpqdll.def
src/interfaces/libpq/libpqdll.def
+1
-0
src/test/examples/testlibpq2.c
src/test/examples/testlibpq2.c
+1
-1
No files found.
src/interfaces/libpgtcl/pgtclCmds.c
View file @
fa0f2416
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclCmds.c,v 1.
39 1999/01/17 21:12:55
tgl Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclCmds.c,v 1.
40 1999/02/07 22:08:51
tgl Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -545,7 +545,7 @@ Pg_result(ClientData cData, Tcl_Interp * interp, int argc, char *argv[])
if
(
strcmp
(
opt
,
"-status"
)
==
0
)
{
Tcl_AppendResult
(
interp
,
pgresStatus
[
PQresultStatus
(
result
)]
,
0
);
Tcl_AppendResult
(
interp
,
PQresStatus
(
PQresultStatus
(
result
))
,
0
);
return
TCL_OK
;
}
else
if
(
strcmp
(
opt
,
"-error"
)
==
0
)
...
...
src/interfaces/libpq/fe-exec.c
View file @
fa0f2416
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.7
2 1999/02/03 20:19:10 momjian
Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.7
3 1999/02/07 22:08:52 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -1518,6 +1518,15 @@ PQresultStatus(PGresult *res)
return
res
->
resultStatus
;
}
const
char
*
PQresStatus
(
ExecStatusType
status
)
{
if
(((
int
)
status
)
<
0
||
((
int
)
status
)
>=
(
sizeof
(
pgresStatus
)
/
sizeof
(
pgresStatus
[
0
])))
return
"Invalid ExecStatusType code"
;
return
pgresStatus
[
status
];
}
const
char
*
PQresultErrorMessage
(
PGresult
*
res
)
{
...
...
src/interfaces/libpq/libpq-fe.h
View file @
fa0f2416
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: libpq-fe.h,v 1.4
7 1999/02/05 04:25:55 momjian
Exp $
* $Id: libpq-fe.h,v 1.4
8 1999/02/07 22:08:53 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -49,7 +49,9 @@ extern "C"
PGRES_FATAL_ERROR
}
ExecStatusType
;
/* String descriptions of the ExecStatusTypes */
/* String descriptions of the ExecStatusTypes.
* NB: direct use of this array is now deprecated; call PQresStatus() instead.
*/
extern
const
char
*
const
pgresStatus
[];
/* PGconn encapsulates a connection to the backend.
...
...
@@ -79,7 +81,6 @@ extern "C"
/* PQnoticeProcessor is the function type for the notice-message callback.
*/
typedef
void
(
*
PQnoticeProcessor
)
(
void
*
arg
,
const
char
*
message
);
/* Print options for PQprint() */
...
...
@@ -153,8 +154,8 @@ extern "C"
extern
PGconn
*
PQconnectdb
(
const
char
*
conninfo
);
extern
PGconn
*
PQsetdbLogin
(
const
char
*
pghost
,
const
char
*
pgport
,
const
char
*
pgoptions
,
const
char
*
pgtty
,
const
char
*
dbName
,
const
char
*
login
,
const
char
*
pwd
);
const
char
*
dbName
,
const
char
*
login
,
const
char
*
pwd
);
#define PQsetdb(M_PGHOST,M_PGPORT,M_PGOPT,M_PGTTY,M_DBNAME) \
PQsetdbLogin(M_PGHOST, M_PGPORT, M_PGOPT, M_PGTTY, M_DBNAME, NULL, NULL)
...
...
@@ -192,8 +193,8 @@ extern "C"
/* Override default notice processor */
extern
void
PQsetNoticeProcessor
(
PGconn
*
conn
,
PQnoticeProcessor
proc
,
void
*
arg
);
PQnoticeProcessor
proc
,
void
*
arg
);
/* === in fe-exec.c === */
...
...
@@ -230,6 +231,7 @@ extern "C"
/* Accessor functions for PGresult objects */
extern
ExecStatusType
PQresultStatus
(
PGresult
*
res
);
extern
const
char
*
PQresStatus
(
ExecStatusType
status
);
extern
const
char
*
PQresultErrorMessage
(
PGresult
*
res
);
extern
int
PQntuples
(
PGresult
*
res
);
extern
int
PQnfields
(
PGresult
*
res
);
...
...
src/interfaces/libpq/libpqdll.def
View file @
fa0f2416
...
...
@@ -66,3 +66,4 @@ EXPORTS
pgresStatus @ 63
PQmblen @ 64
PQresultErrorMessage @ 65
PQresStatus @ 66
src/test/examples/testlibpq2.c
View file @
fa0f2416
...
...
@@ -90,7 +90,7 @@ main()
/* async notification only come back as a result of a query */
/* we can send empty queries */
res
=
PQexec
(
conn
,
" "
);
/* printf("res->status = %s\n",
pgresStatus[PQresultStatus(res)]
); */
/* printf("res->status = %s\n",
PQresStatus(PQresultStatus(res))
); */
/* check for asynchronous returns */
notify
=
PQnotifies
(
conn
);
if
(
notify
)
...
...
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