Age Owner Branch data TLA Line data Source code
1 : : #include <stdlib.h>
2 : : #include <string.h>
3 : : #include <stdlib.h>
4 : : #include <stdio.h>
5 : :
6 : : exec sql include ../regression;
7 : :
8 : : int
6465 meskes@postgresql.or 9 :CBC 1 : main(void)
10 : : {
11 : 1 : ECPGdebug(1, stderr);
12 : :
13 : 1 : exec sql connect to REGRESSDB1 as main;
14 : :
15 : 1 : exec sql set connection to main;
16 : :
17 : 1 : exec sql disconnect DEFAULT;
18 : :
2432 peter_e@gmx.net 19 : 1 : return 0;
20 : : }
|