mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-18 18:44:06 +08:00
Update pgeasy examples
This commit is contained in:
parent
9bd604f3be
commit
0ccf3c8877
@ -8,7 +8,7 @@
|
|||||||
#include "libpq-fe.h"
|
#include "libpq-fe.h"
|
||||||
|
|
||||||
#include "halt.h"
|
#include "halt.h"
|
||||||
#include "libpgeasy.h"
|
#include <libpgeasy.h>
|
||||||
|
|
||||||
PGresult *attres,
|
PGresult *attres,
|
||||||
*relres;
|
*relres;
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <libpq-fe.h>
|
#include <libpq-fe.h>
|
||||||
#include "../halt.h"
|
#include "../halt.h"
|
||||||
#include "libpgeasy.h"
|
#include <libpgeasy.h>
|
||||||
|
|
||||||
int
|
int
|
||||||
main(int argc, char **argv)
|
main(int argc, char **argv)
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <libpq-fe.h>
|
#include <libpq-fe.h>
|
||||||
#include "../halt.h"
|
#include "../halt.h"
|
||||||
#include "libpgeasy.h"
|
#include <libpgeasy.h>
|
||||||
|
|
||||||
int
|
int
|
||||||
main(int argc, char **argv)
|
main(int argc, char **argv)
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <libpq-fe.h>
|
#include <libpq-fe.h>
|
||||||
#include "../halt.h"
|
#include "../halt.h"
|
||||||
#include "libpgeasy.h"
|
#include <libpgeasy.h>
|
||||||
|
|
||||||
int
|
int
|
||||||
main(int argc, char **argv)
|
main(int argc, char **argv)
|
||||||
|
@ -77,7 +77,9 @@ disconnectdb()
|
|||||||
PGresult *
|
PGresult *
|
||||||
doquery(char *query)
|
doquery(char *query)
|
||||||
{
|
{
|
||||||
if (res != NULL && in_result_block == FALSE && was_get_unset_result == FALSE)
|
if (res != NULL &&
|
||||||
|
in_result_block == FALSE &&
|
||||||
|
was_get_unset_result == FALSE)
|
||||||
PQclear(res);
|
PQclear(res);
|
||||||
|
|
||||||
was_get_unset_result = FALSE;
|
was_get_unset_result = FALSE;
|
||||||
|
Loading…
Reference in New Issue
Block a user