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
bdafb400
Commit
bdafb400
authored
Dec 14, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up comment in libpgeasy.
parent
3aaaf5ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
48 deletions
+48
-48
src/interfaces/libpgeasy/libpgeasy.c
src/interfaces/libpgeasy/libpgeasy.c
+48
-48
No files found.
src/interfaces/libpgeasy/libpgeasy.c
View file @
bdafb400
/*
* pgeasy.c
*
*/
*/
#include <stdio.h>
#include <string.h>
...
...
@@ -39,10 +39,10 @@ static int was_get_unset_result = FALSE;
static
int
tuple
;
/*
*
*
**
connectdb - returns PGconn structure
*
*
*/
*
*
connectdb - returns PGconn structure
*
*/
PGconn
*
connectdb
(
char
*
options
)
{
...
...
@@ -55,10 +55,10 @@ connectdb(char *options)
}
/*
*
*
*
* disconnectdb
*
*
*/
*
* disconnectdb
*
*/
void
disconnectdb
()
{
...
...
@@ -71,10 +71,10 @@ disconnectdb()
}
/*
*
*
**
doquery - returns PGresult structure
*
*
*/
*
*
doquery - returns PGresult structure
*
*/
PGresult
*
doquery
(
char
*
query
)
{
...
...
@@ -104,11 +104,11 @@ doquery(char *query)
}
/*
*
*
**
fetch - returns tuple number (starts at 0), or the value END_OF_TUPLES
**
NULL pointers are skipped
*
*
*/
*
*
fetch - returns tuple number (starts at 0), or the value END_OF_TUPLES
*
NULL pointers are skipped
*
*/
int
fetch
(
void
*
param
,...)
{
...
...
@@ -141,12 +141,12 @@ fetch(void *param,...)
}
/*
*
*
*
* fetchwithnulls - returns tuple number (starts at 0),
*
* or the value END_OF_TUPLES
**
Returns TRUE or FALSE into null indicator variables
**
NULL pointers are skipped
*/
*
* fetchwithnulls - returns tuple number (starts at 0),
* or the value END_OF_TUPLES
*
Returns TRUE or FALSE into null indicator variables
*
NULL pointers are skipped
*/
int
fetchwithnulls
(
void
*
param
,...)
{
...
...
@@ -184,10 +184,10 @@ fetchwithnulls(void *param,...)
}
/*
*
*
**
on_error_stop
*
*
*/
*
*
on_error_stop
*
*/
void
on_error_stop
()
{
...
...
@@ -195,10 +195,10 @@ on_error_stop()
}
/*
*
*
**
on_error_continue
*
*
*/
*
*
on_error_continue
*
*/
void
on_error_continue
()
{
...
...
@@ -207,10 +207,10 @@ on_error_continue()
/*
*
*
**
get_result
*
*
*/
*
*
get_result
*
*/
PGresult
*
get_result
()
{
...
...
@@ -227,10 +227,10 @@ get_result()
}
/*
*
*
**
set_result
*
*
*/
*
*
set_result
*
*/
void
set_result
(
PGresult
*
newres
)
{
...
...
@@ -263,10 +263,10 @@ set_result(PGresult *newres)
/*
*
*
**
unset_result
*
*
*/
*
*
unset_result
*
*/
void
unset_result
(
PGresult
*
oldres
)
{
...
...
@@ -287,10 +287,10 @@ unset_result(PGresult *oldres)
}
/*
*
*
**
reset_fetch
*
*
*/
*
*
reset_fetch
*
*/
void
reset_fetch
()
{
...
...
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