1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef POSTGRES_SQLCA_H #define POSTGRES_SQLCA_H struct sqlca { int sqlcode; struct { int sqlerrml; char sqlerrmc[1000]; } sqlerrm; } sqlca; #endif