-2

Postgres を使用してデータベースに接続しようとしています

#include <stdio.h>
#include <stdlib.h>
#include <libpq-fe.h>

int main(int argc, char* argv[])
{
//Start connection
PGconn* connection = PQconnectdb("host=webcourse.cs.nuim.ie dbname=cs621      sslmode=require user=ggales password=1234");

if (PQstatus(connection) ==CONNECTION_BAD)
{
printf("Connection error\n");
PQfinish(connection);
return -1; //Execution of the program will stop here
}
printf("Connection ok\n");
//End connection
PQfinish(connection);
printf("Disconnected\n");


return 0;
}

そして、私はこのコンパイルエラーを取得し続けます:

main.c: In function ‘main’:
main.c:9:35: warning: missing terminating " character [enabled by default]
main.c:9:2: error: missing terminating " character
main.c:10:2: error: ‘dbname’ undeclared (first use in this function)
main.c:10:2: note: each undeclared identifier is reported only once for each function it      appears in
main.c:10:9: error: ‘cs621’ undeclared (first use in this function)
main.c:10:15: error: expected ‘)’ before ‘sslmode’
main.c:10:56: warning: missing terminating " character [enabled by default]
main.c:10:15: error: missing terminating " character
main.c:16:1: error: expected ‘,’ or ‘;’ before ‘}’ token
main.c:16:1: error: expected declaration or statement at end of input

なぜこれが起こっているのか誰にもわかりますか?

ありがとう。

4

2 に答える 2

3

あなたのコードは問題なくコンパイルされます。貼り付けるx.cと、問題なくコンパイルできます。

gcc -I /usr/pgsql-9.2/include -L /usr/pgsql-9.2/lib x.c -lpq

(パスはシステムによって異なる場合があります)。

于 2013-04-13T01:58:03.670 に答える
-1

32 ビット プログラムで 64 ビットの libpq.lib を使用できます。32 ビットの libpq.lib を使用するか、プラットフォームを x64 に変更できます。

32 ビット クライアント + 64 ビット サーバーではうまく動作しません。

于 2013-08-05T10:16:41.413 に答える