Re: libpq interfacing - Mailing list pgsql-php

From Miguel Carvalho
Subject Re: libpq interfacing
Date
Msg-id 11436.195.23.103.182.1015340322.squirrel@www.ipatimup.pt
Whole thread Raw
In response to libpq interfacing  (arun kv <arun@library.iisc.ernet.in>)
List pgsql-php
> hello,
>      i am accessing a postgresql table using libpq interface ( i.e. c
> program) i am opening a text file and reading contents and trying to
> insert the same to postgresql table. suppose i read some string
> like"computer" from file and stored in a variable key. no i want to
> write the content of key to table i.e using insert command.


Use something like is:
char buffer[1024];
//char_pointer_for_field1 AND  char_pointer_for_field2 are char*
//type variables

 buffer = sprintf("INSERT INTO TABLE(field1,field2) VALUES('%s','%s'),
                char_pointer_for_field1, char_pointer_for_field2
          );

NOTE: You may have to use a bigger buffer string. This depends on the
length of variables char_pointer_for_field1 and char_pointer_for_field2.
If for some reason the buffer space reserved is smaller, it means that the
previous sprinf instaruction will *corrupt* other SO memory...and you will
notice an error like: Segmentation fault.




pgsql-php by date:

Previous
From: arun kv
Date:
Subject: libpq interfacing
Next
From: "mark boylan"
Date:
Subject: SLL with PHP?