1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
|
/* Processed by ecpg (regression mode) */
/* These include files are added by the preprocessor */
#include <ecpglib.h>
#include <ecpgerrno.h>
#include <sqlca.h>
/* End of automatic include section */
#define ECPGdebug(X,Y) ECPGdebug((X)+100,(Y))
#line 1 "describe.pgc"
#include <stdlib.h>
#include <string.h>
#line 1 "regression.h"
#line 4 "describe.pgc"
/* exec sql whenever sqlerror stop ; */
#line 6 "describe.pgc"
int
main (void)
{
/* exec sql begin declare section */
#line 12 "describe.pgc"
char * stmt1 = "SELECT id, t FROM t1" ;
#line 13 "describe.pgc"
char * stmt2 = "SELECT id, t FROM t1 WHERE id = -1" ;
#line 14 "describe.pgc"
int i , count1 , count2 , count3 , count4 ;
#line 15 "describe.pgc"
char field_name1 [ 30 ] = "not set" ;
#line 16 "describe.pgc"
char field_name2 [ 30 ] = "not set" ;
#line 17 "describe.pgc"
char field_name3 [ 30 ] = "not set" ;
#line 18 "describe.pgc"
char field_name4 [ 30 ] = "not set" ;
/* exec sql end declare section */
#line 19 "describe.pgc"
char msg[128];
ECPGdebug(1, stderr);
strcpy(msg, "connect");
{ ECPGconnect(__LINE__, 0, "ecpg1_regression" , NULL, NULL , NULL, 0);
#line 26 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 26 "describe.pgc"
strcpy(msg, "set");
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "set datestyle to iso", ECPGt_EOIT, ECPGt_EORT);
#line 29 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 29 "describe.pgc"
strcpy(msg, "create");
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "create table t1 ( id serial primary key , t text )", ECPGt_EOIT, ECPGt_EORT);
#line 32 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 32 "describe.pgc"
strcpy(msg, "insert");
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "insert into t1 ( id , t ) values ( default , 'a' )", ECPGt_EOIT, ECPGt_EORT);
#line 35 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 35 "describe.pgc"
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "insert into t1 ( id , t ) values ( default , 'b' )", ECPGt_EOIT, ECPGt_EORT);
#line 36 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 36 "describe.pgc"
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "insert into t1 ( id , t ) values ( default , 'c' )", ECPGt_EOIT, ECPGt_EORT);
#line 37 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 37 "describe.pgc"
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "insert into t1 ( id , t ) values ( default , 'd' )", ECPGt_EOIT, ECPGt_EORT);
#line 38 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 38 "describe.pgc"
strcpy(msg, "commit");
{ ECPGtrans(__LINE__, NULL, "commit");
#line 41 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 41 "describe.pgc"
/*
* Test DESCRIBE with a query producing tuples.
* DESCRIPTOR and SQL DESCRIPTOR are the same in native mode.
*/
strcpy(msg, "allocate");
ECPGallocate_desc(__LINE__, "desc1");
#line 49 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);
#line 49 "describe.pgc"
ECPGallocate_desc(__LINE__, "desc2");
#line 50 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);
#line 50 "describe.pgc"
ECPGallocate_desc(__LINE__, "desc3");
#line 51 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);
#line 51 "describe.pgc"
ECPGallocate_desc(__LINE__, "desc4");
#line 52 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);
#line 52 "describe.pgc"
strcpy(msg, "prepare");
{ ECPGprepare(__LINE__, NULL, 0, "st_id1", stmt1);
#line 55 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 55 "describe.pgc"
strcpy(msg, "describe");
{ ECPGdescribe(__LINE__, 0, NULL, "st_id1",
ECPGt_descriptor, "desc1", 0L, 0L, 0L,
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);}
#line 58 "describe.pgc"
{ ECPGdescribe(__LINE__, 0, NULL, "st_id1",
ECPGt_descriptor, "desc2", 0L, 0L, 0L,
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);}
#line 59 "describe.pgc"
{ ECPGdescribe(__LINE__, 0, NULL, "st_id1",
ECPGt_descriptor, "desc3", 0L, 0L, 0L,
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);}
#line 60 "describe.pgc"
{ ECPGdescribe(__LINE__, 0, NULL, "st_id1",
ECPGt_descriptor, "desc4", 0L, 0L, 0L,
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);}
#line 61 "describe.pgc"
strcpy(msg, "get descriptor");
{ ECPGget_desc_header(__LINE__, "desc1", &(count1));
#line 64 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 64 "describe.pgc"
{ ECPGget_desc_header(__LINE__, "desc2", &(count2));
#line 65 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 65 "describe.pgc"
{ ECPGget_desc_header(__LINE__, "desc3", &(count3));
#line 66 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 66 "describe.pgc"
{ ECPGget_desc_header(__LINE__, "desc4", &(count4));
#line 67 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 67 "describe.pgc"
if (!(count1 == count2 && count1 == count3 && count1 == count4))
exit(1);
for (i = 1; i <= count1; i++)
{
{ ECPGget_desc(__LINE__, "desc1", i,ECPGd_name,
ECPGt_char,(field_name1),(long)30,(long)1,(30)*sizeof(char), ECPGd_EODT);
#line 74 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 74 "describe.pgc"
{ ECPGget_desc(__LINE__, "desc2", i,ECPGd_name,
ECPGt_char,(field_name2),(long)30,(long)1,(30)*sizeof(char), ECPGd_EODT);
#line 75 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 75 "describe.pgc"
{ ECPGget_desc(__LINE__, "desc3", i,ECPGd_name,
ECPGt_char,(field_name3),(long)30,(long)1,(30)*sizeof(char), ECPGd_EODT);
#line 76 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 76 "describe.pgc"
{ ECPGget_desc(__LINE__, "desc4", i,ECPGd_name,
ECPGt_char,(field_name4),(long)30,(long)1,(30)*sizeof(char), ECPGd_EODT);
#line 77 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 77 "describe.pgc"
printf("field_name 1 '%s' 2 '%s' 3 '%s' 4 '%s'\n",
field_name1, field_name2, field_name3, field_name4);
}
strcpy(msg, "deallocate");
ECPGdeallocate_desc(__LINE__, "desc1");
#line 83 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);
#line 83 "describe.pgc"
ECPGdeallocate_desc(__LINE__, "desc2");
#line 84 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);
#line 84 "describe.pgc"
ECPGdeallocate_desc(__LINE__, "desc3");
#line 85 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);
#line 85 "describe.pgc"
ECPGdeallocate_desc(__LINE__, "desc4");
#line 86 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);
#line 86 "describe.pgc"
{ ECPGdeallocate(__LINE__, 0, NULL, "st_id1");
#line 88 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 88 "describe.pgc"
/* Test DESCRIBE with a query not producing tuples */
strcpy(msg, "allocate");
ECPGallocate_desc(__LINE__, "desc1");
#line 93 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);
#line 93 "describe.pgc"
ECPGallocate_desc(__LINE__, "desc2");
#line 94 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);
#line 94 "describe.pgc"
ECPGallocate_desc(__LINE__, "desc3");
#line 95 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);
#line 95 "describe.pgc"
ECPGallocate_desc(__LINE__, "desc4");
#line 96 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);
#line 96 "describe.pgc"
strcpy(msg, "prepare");
{ ECPGprepare(__LINE__, NULL, 0, "st_id2", stmt2);
#line 99 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 99 "describe.pgc"
strcpy(msg, "describe");
{ ECPGdescribe(__LINE__, 0, NULL, "st_id2",
ECPGt_descriptor, "desc1", 0L, 0L, 0L,
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);}
#line 102 "describe.pgc"
{ ECPGdescribe(__LINE__, 0, NULL, "st_id2",
ECPGt_descriptor, "desc2", 0L, 0L, 0L,
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);}
#line 103 "describe.pgc"
{ ECPGdescribe(__LINE__, 0, NULL, "st_id2",
ECPGt_descriptor, "desc3", 0L, 0L, 0L,
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);}
#line 104 "describe.pgc"
{ ECPGdescribe(__LINE__, 0, NULL, "st_id2",
ECPGt_descriptor, "desc4", 0L, 0L, 0L,
ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);}
#line 105 "describe.pgc"
strcpy(msg, "get descriptor");
{ ECPGget_desc_header(__LINE__, "desc1", &(count1));
#line 108 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 108 "describe.pgc"
{ ECPGget_desc_header(__LINE__, "desc2", &(count2));
#line 109 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 109 "describe.pgc"
{ ECPGget_desc_header(__LINE__, "desc3", &(count3));
#line 110 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 110 "describe.pgc"
{ ECPGget_desc_header(__LINE__, "desc4", &(count4));
#line 111 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 111 "describe.pgc"
if (!(count1 == count2 && count1 == count3 && count1 == count4))
exit(1);
for (i = 1; i <= count1; i++)
{
{ ECPGget_desc(__LINE__, "desc1", i,ECPGd_name,
ECPGt_char,(field_name1),(long)30,(long)1,(30)*sizeof(char), ECPGd_EODT);
#line 118 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 118 "describe.pgc"
{ ECPGget_desc(__LINE__, "desc2", i,ECPGd_name,
ECPGt_char,(field_name2),(long)30,(long)1,(30)*sizeof(char), ECPGd_EODT);
#line 119 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 119 "describe.pgc"
{ ECPGget_desc(__LINE__, "desc3", i,ECPGd_name,
ECPGt_char,(field_name3),(long)30,(long)1,(30)*sizeof(char), ECPGd_EODT);
#line 120 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 120 "describe.pgc"
{ ECPGget_desc(__LINE__, "desc4", i,ECPGd_name,
ECPGt_char,(field_name4),(long)30,(long)1,(30)*sizeof(char), ECPGd_EODT);
#line 121 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 121 "describe.pgc"
printf("field_name 1 '%s' 2 '%s' 3 '%s' 4 '%s'\n",
field_name1, field_name2, field_name3, field_name4);
}
strcpy(msg, "deallocate");
ECPGdeallocate_desc(__LINE__, "desc1");
#line 127 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);
#line 127 "describe.pgc"
ECPGdeallocate_desc(__LINE__, "desc2");
#line 128 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);
#line 128 "describe.pgc"
ECPGdeallocate_desc(__LINE__, "desc3");
#line 129 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);
#line 129 "describe.pgc"
ECPGdeallocate_desc(__LINE__, "desc4");
#line 130 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);
#line 130 "describe.pgc"
{ ECPGdeallocate(__LINE__, 0, NULL, "st_id2");
#line 132 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 132 "describe.pgc"
/* End test */
strcpy(msg, "drop");
{ ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "drop table t1", ECPGt_EOIT, ECPGt_EORT);
#line 138 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 138 "describe.pgc"
strcpy(msg, "commit");
{ ECPGtrans(__LINE__, NULL, "commit");
#line 141 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 141 "describe.pgc"
strcpy(msg, "disconnect");
{ ECPGdisconnect(__LINE__, "CURRENT");
#line 144 "describe.pgc"
if (sqlca.sqlcode < 0) exit (1);}
#line 144 "describe.pgc"
return 0;
}
|