Re: Help regarding INSERT INTO statement

From: "paul butler" <paul(at)entropia(dot)co(dot)uk>
To: "Smitha V(dot) Babu" <smitha(dot)v(at)sonata-software(dot)com>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: Help regarding INSERT INTO statement
Date: 2003-06-20 09:24:43
Message-ID: 3EF2E0EB.21614.9DDE3DE@localhost
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

From: "Smitha V. Babu" <smitha(dot)v(at)sonata-software(dot)com>
To: pgsql-novice(at)postgresql(dot)org
Subject: [NOVICE] Help regarding INSERT INTO statement
Date sent: Fri, 20 Jun 2003 13:54:44 +0530

Does this help?

PGresult *res;
char *name="smitha";
char *address="Bangalore";

sprintf(query_1, "INSERT INTO data(UserName,UserAddress)
VALUES('%s','%s')",name,address);

res =PQexec(conn,query_1);

>
> Hi all,
> In my pgm i want to insert to the table a number of data..
> I want toinsert it through variable names...
> my program look like this
>
> char *name="smitha";
> char *address="Bangalore";
>
> PQexexc(conn,"INSERT INTO data VALUES(name,address)");
>
> whare data is the tablename having two fields UserName and UserAddress...
>
> but this doesn't works
>
> Can any one of u help me....
>
> Thanking in advance..
> smitha
>
> *********************************************************************
> Disclaimer: The information in this e-mail and any attachments is
> confidential / privileged. It is intended solely for the addressee or
> addressees. If you are not the addressee indicated in this message, you may
> not copy or deliver this message to anyone. In such case, you should destroy
> this message and kindly notify the sender by reply email. Please advise
> immediately if you or your employer does not consent to Internet email for
> messages of this kind.
> *********************************************************************
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Dani Oderbolz 2003-06-20 11:22:50 Starting psql from Script - how to pass the password?
Previous Message Smitha V. Babu 2003-06-20 08:24:44 Help regarding INSERT INTO statement