Parameterized queries - Mailing list pgsql-interfaces

From Jan Klostermann
Subject Parameterized queries
Date
Msg-id 001b01c3aac9$2a7d77c0$f564a8c0@BARCELONA
Whole thread Raw
Responses Re: Parameterized queries  ("Jeroen T. Vermeulen" <jtv@xs4all.nl>)
Re: Parameterized queries  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-interfaces
Hello,

I would like to know, if there exists a way in PostgreSQL to insert data
not exclusively via the SQL-query-string but using a direct data
interface, thus avoiding parsing the data into string and then back into
binary data representation (e.g. Double). 

What I would like to use is a query like this: INSERT INTO table
(number1, number2) VALUES (?,?)
Before executing the query the command structure would be fill with the
parameters for the 2 values (e.g. 3.33 and 5.555) and then there would
follow the execution, where the query parser would replace the "?" with
the current data of the parameters and execute the appopriate query.

Unfortunately I cannot find anything about query-contructions with
question marks ("?"), therefore I am already wondering if this way of
transfering data exists with PostgreSQL!?

Is there anybody out there, who can help me with this?
Is there another way of efficiently transfering data, avoiding parsing
back and forth? 

Jan Klostermann

PS: I tried to do it via the ODBC interface and it did not work. Then I
scanned through the documentation, incl. libpq and did not find anything
related. 



pgsql-interfaces by date:

Previous
From: Michael Meskes
Date:
Subject: Re: [GENERAL] Postgres 7.4 : ECPG not Thread-safe
Next
From: "Jeroen T. Vermeulen"
Date:
Subject: Re: Parameterized queries