PostgreSQL Source Code git master
preproc-strings.c File Reference
#include <ecpglib.h>
#include <ecpgerrno.h>
#include <sqlca.h>
Include dependency graph for preproc-strings.c:

Go to the source code of this file.

Macros

#define ECPGdebug(X, Y)   ECPGdebug((X)+100,(Y))
 

Functions

int main (void)
 

Variables

char * s1
 
char * s2
 
char * s3
 
char * s4
 
char * s5
 
char * s6
 
char * s7
 
char * s8
 

Macro Definition Documentation

◆ ECPGdebug

#define ECPGdebug (   X,
 
)    ECPGdebug((X)+100,(Y))

Definition at line 7 of file preproc-strings.c.

Function Documentation

◆ main()

int main ( void  )

Definition at line 51 of file preproc-strings.c.

52{
53 ECPGdebug(1, stderr);
54
55 { ECPGconnect(__LINE__, 0, "ecpg1_regression" , NULL, NULL , NULL, 0); }
56#line 11 "strings.pgc"
57
58
59 { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "set standard_conforming_strings to on", ECPGt_EOIT, ECPGt_EORT);}
60#line 13 "strings.pgc"
61
62
63 { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "select 'abc''d\\ef' , N'abc''d\\ef' as foo , E'abc''d\\\\ef' as \"foo\"\"bar\" , U&'d\\0061t\\0061' as U&\"foo\"\"bar\" , U&'d!+000061t!+000061' UESCAPE '!' , $foo$abc$def$foo$", ECPGt_EOIT,
64 ECPGt_char,&(s1),(long)0,(long)1,(1)*sizeof(char),
65 ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L,
66 ECPGt_char,&(s2),(long)0,(long)1,(1)*sizeof(char),
67 ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L,
68 ECPGt_char,&(s3),(long)0,(long)1,(1)*sizeof(char),
69 ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L,
70 ECPGt_char,&(s4),(long)0,(long)1,(1)*sizeof(char),
71 ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L,
72 ECPGt_char,&(s5),(long)0,(long)1,(1)*sizeof(char),
73 ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L,
74 ECPGt_char,&(s6),(long)0,(long)1,(1)*sizeof(char),
75 ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);}
76#line 21 "strings.pgc"
77
78
79 printf("%s %s %s %s %s %s\n", s1, s2, s3, s4, s5, s6);
80
81 { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "select b'0010' , x'019ABcd'", ECPGt_EOIT,
82 ECPGt_char,&(s7),(long)0,(long)1,(1)*sizeof(char),
83 ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L,
84 ECPGt_char,&(s8),(long)0,(long)1,(1)*sizeof(char),
85 ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);}
86#line 26 "strings.pgc"
87
88
89 printf("%s %s\n", s7, s8);
90
91 { ECPGdisconnect(__LINE__, "CURRENT");}
92#line 30 "strings.pgc"
93
94 return 0;
95}
bool ECPGdisconnect(int lineno, const char *connection_name)
Definition: connect.c:693
bool ECPGconnect(int lineno, int c, const char *name, const char *user, const char *passwd, const char *connection_name, int autocommit)
Definition: connect.c:260
@ ECPGst_normal
Definition: ecpgtype.h:97
@ ECPGt_EOIT
Definition: ecpgtype.h:62
@ ECPGt_NO_INDICATOR
Definition: ecpgtype.h:64
@ ECPGt_EORT
Definition: ecpgtype.h:63
@ ECPGt_char
Definition: ecpgtype.h:43
bool ECPGdo(const int lineno, const int compat, const int force_indicator, const char *connection_name, const bool questionmarks, const int st, const char *query,...)
Definition: execute.c:2293
#define printf(...)
Definition: port.h:245
char * s8
char * s5
char * s1
char * s4
char * s2
char * s3
char * s7
#define ECPGdebug(X, Y)
char * s6

References ECPGconnect(), ECPGdebug, ECPGdisconnect(), ECPGdo(), ECPGst_normal, ECPGt_char, ECPGt_EOIT, ECPGt_EORT, ECPGt_NO_INDICATOR, printf, s1, s2, s3, s4, s5, s6, s7, and s8.

Variable Documentation

◆ s1

◆ s2

◆ s3

char * s3

Definition at line 43 of file preproc-strings.c.

Referenced by main(), and parseHexChar().

◆ s4

char * s4

Definition at line 43 of file preproc-strings.c.

Referenced by main().

◆ s5

char * s5

Definition at line 43 of file preproc-strings.c.

Referenced by main().

◆ s6

char * s6

Definition at line 43 of file preproc-strings.c.

Referenced by main().

◆ s7

char * s7

Definition at line 43 of file preproc-strings.c.

Referenced by main().

◆ s8

char * s8

Definition at line 43 of file preproc-strings.c.

Referenced by main().