Re: error in code

Поиск
Список
Период
Сортировка
От Stephen Powell
Тема Re: error in code
Дата
Msg-id u3cbsi09z.fsf@privacy.net
обсуждение исходный текст
Ответ на error in code  (Ashok Chauhan <ashok@kalculate.com>)
Список pgsql-admin
On 10 Dec 2003, ashok@kalculate.com wrote:

> I written a code

[...]

Checking for errors is good:

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

int main()
{
        PGresult *result = NULL;
        PGconn *conn = NULL;
        int feild;
        printf("successful");
        conn = PQconnectdb ("ashok");
  if (!conn || CONNECTION_BAD == PQstatus(conn)) {
    fprintf(stderr, "Connection to database failed.\n");
    fprintf(stderr, "%s", PQerrorMessage(conn));
    exit(EXIT_FAILURE);
  }
        result = PQexec (conn, "select * from bill");
  if (!result || PGRES_TUPLES_OK != PQresultStatus(result)) {
    fprintf(stderr, "select command returned no tuples\n");
    fprintf(stderr, "%s", PQerrorMessage(conn));
    exit(EXIT_FAILURE);
  }
        feild = PQntuples (result);
        printf("%d",feild);
        PQclear (result);
        PQfinish (conn);
        printf("hello");
        return EXIT_SUCCESS;
}

> when i run the a.out it give nothing.

Not even "successful" or "hello" from the printfs?

> plz help me.

Download the programmers manual from here <http://www.postgresql.org/docs/>

--
Stephen Powell

В списке pgsql-admin по дате отправления:

Предыдущее
От: Christopher Browne
Дата:
Сообщение: Re: 2CPU 4GBRAM
Следующее
От: Chitta Ranjan Mishra
Дата:
Сообщение: Help---- Urgent