10 lines
153 B
C++
10 lines
153 B
C++
|
#include <libpq-fe.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
PQenterPipelineMode(NULL);
|
||
|
PQexitPipelineMode(NULL);
|
||
|
PQpipelineSync(NULL);
|
||
|
PQpipelineStatus(NULL);
|
||
|
}
|