We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e05d3e commit f329290Copy full SHA for f329290
src/interfaces/libpgeasy/libpgeasy.c
@@ -27,17 +27,16 @@
27
static PGconn *conn;
28
static PGresult *res = NULL;
29
30
+static int tuple; /* stores fetch location */
31
+
32
#define ON_ERROR_STOP 0
33
#define ON_ERROR_CONTINUE 1
34
-static int on_error_state = ON_ERROR_STOP;
35
+static int on_error_state = ON_ERROR_STOP; /* halt on errors? */
36
-static int in_result_block = FALSE;
37
+static int in_result_block = FALSE;
38
static int was_get_unset_result = FALSE;
39
-/* LOCAL VARIABLES */
-static int tuple;
40
-
41
/*
42
*
43
* connectdb - returns PGconn structure
0 commit comments