X-Original-To: pgsql-docs-postgresql.org@localhost.postgresql.org Received: from localhost (unknown [64.117.224.130]) by svr1.postgresql.org (Postfix) with ESMTP id 03D3AD1B4F9 for ; Wed, 24 Sep 2003 17:13:27 +0000 (GMT) Received: from svr1.postgresql.org ([64.117.224.193]) by localhost (neptune.hub.org [64.117.224.130]) (amavisd-new, port 10024) with ESMTP id 76378-09 for ; Wed, 24 Sep 2003 14:12:55 -0300 (ADT) Received: from anchor-post-37.mail.demon.net (anchor-post-37.mail.demon.net [194.217.242.87]) by svr1.postgresql.org (Postfix) with ESMTP id 16922D1B51E for ; Wed, 24 Sep 2003 14:12:54 -0300 (ADT) Received: from lfix.demon.co.uk ([80.177.205.209] helo=cerberus.lfix.co.uk) by anchor-post-37.mail.demon.net with esmtp (Exim 3.35 #1) id 1A2DC9-000Hzy-0b; Wed, 24 Sep 2003 18:12:53 +0100 Received: from linda.lfix.co.uk ([192.168.1.1]) by cerberus.lfix.co.uk with esmtp (Exim 4.22) id 1A2DBw-0002nH-6p; Wed, 24 Sep 2003 18:12:40 +0100 Subject: Re: Select statement error !!!! From: Oliver Elphick To: Vutharkar Goutham Cc: pgsql-docs@postgresql.org In-Reply-To: References: Content-Type: text/plain Organization: LFIX Limited Message-Id: <1064423595.6609.370.camel@linda.lfix.co.uk> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Wed, 24 Sep 2003 18:13:16 +0100 Content-Transfer-Encoding: 7bit X-LFIX-MailScanner: Found to be clean X-Virus-Scanned: by amavisd-new at postgresql.org X-Archive-Number: 200309/62 X-Sequence-Number: 2018 On Wed, 2003-09-24 at 15:48, Vutharkar Goutham wrote: ... > So we are using PostgreSQL as our database to store the captured data from a > LAN or from outside network. So in the mean process we successfully captured > the data packets and sent them into the database tables but the problem is > when we are are trying to retrieve data then we are failing and we dont know > how to proceed further. We searched all the forums for right answer but > didn't get to it so i was forced to post here. Now let me paste the code > here .... > > > > > #include > #include > > void exit_nicely(PGconn *conn) > { > PQfinish(conn); > exit(1); > } > > int main() > { > char *pghost,*pgport,*pgoptions,*pgtty; > char *dbname; > char query[1024]; > struct PQprintOpt *po; > int nFields; > int i,j; > FILE *fp; > > fp = fopen("data.txt","w+"); > > strcpy(query,"select * from UDP_Table"); ^^^^^^^^^ If this table's name is truly mixed case, it must be enclosed in double quotes; otherwise it will be folded to lowercase automatically. > printf("\nInitial Query is : %s\n",query); > PGconn *conn; > PGresult *res; > > pghost = NULL; > pgport = NULL; > pgoptions = NULL; > pgtty = NULL; > dbname = "Project"; > > conn = PQsetdb(pghost,pgport,pgoptions,pgtty,dbname); > > if(PQstatus(conn) == CONNECTION_BAD) > { > fprintf(stderr,"Failed to make a connection.\n",dbname); > fprintf(stderr,"%s",PQerrorMessage(conn)); > exit_nicely(conn); > } > else > printf("\nConnection established with backend.\n"); > > res = PQexec(conn,"BEGIN"); > > if(!res || PQresultStatus(res)!=PGRES_TUPLES_OK) ^^^^^^^^^^^^^^^ PGRES_COMMAND_OK > { > fprintf(stderr,"Begin Failed.\n"); > PQclear(res); > exit_nicely(conn); > } > else > printf("\nBegin Transaction Completed Successfully.\n"); > > printf("\nQuery B4 execution is : %s\n",query); > > res = PQexec(conn,query); > > if(!res || PQresultStatus(res)!=PGRES_COMMAND_OK) ^^^^^^^^^^^^^^^^ PGRES_TUPLES_OK > { > fprintf(stderr,"\nSelect Statement Failed.\n"); > PQclear(res); > exit_nicely(conn); > } > else > { > printf("\nSelect statement executed successfully.\n"); > PQprint(fp,res,(const struct PQprintOpt *)po); segfaults here - the third parameter should be const PQprintopt * which should point to a PQprintOpt struct with values assigned (see the libpq manual). > } > > // Print Attribute Names > > printf("\nThe Attribute Names are \n\n"); > > nFields = PQnfields(res); > > for(i = 0;i printf("%-15s",PQfname(res,i)); > printf("\n\n"); > > //Print out rows > > printf("The Rows in the table are \n\n"); > > for(i = 0;i { > for(i = 0;j printf("%-15s",PQgetvalue(res,i,j)); > printf("\n"); > } > > res = PQexec(conn,"COMMIT"); > > PQclear(res); > > PQfinish(conn); > > return 0; > } > > > I tried as told by you but still i failed. So please dont mind solving the > problem for me if i am not troubling you. Your help will be appreciated a > lot by our project team. > > Thank You, > > Goutham.V > MSIT. > > _________________________________________________________________ > Talk to Karthikeyan. Watch his stunning feats. > http://server1.msn.co.in/sp03/tataracing/index.asp Download images. > > > ---------------------------(end of broadcast)--------------------------- > TIP 4: Don't 'kill -9' the postmaster -- Oliver Elphick Oliver.Elphick@lfix.co.uk Isle of Wight, UK http://www.lfix.co.uk/oliver GPG: 1024D/3E1D0C1C: CA12 09E0 E8D5 8870 5839 932A 614D 4C34 3E1D 0C1C ======================================== "And we know that all things work together for good to them that love God, to them who are the called according to his purpose." Romans 8:28