Re: Function in C++ - Mailing list pgsql-sql

From TJ O'Donnell
Subject Re: Function in C++
Date
Msg-id 41D6F804.9060703@acm.org
Whole thread Raw
In response to Function in C++  (Jose Mendoza <unixos@prodigy.net.mx>)
List pgsql-sql
All I do is write a c interface with postgresql, using the
standard method described in the documentation.  There are example
in the src code tree, too.  The only "trick" is to declare
my c++ functions to be callable by c, like in this example:

extern "C" int oe_smarts_match(char *smi, char *sma)
{

.c++ code ...

}
Then my c interface code calls oe_smarts_match.

I hope this helps.  Let me know if you need more details or examples.

TJ


Jose Mendoza wrote:
>  
> 
> I would like to have, only if it is possible, a small example of how can 
> be that done. I have this problem now because I have a very light 
> interface using the ODBC and with the same code I can connect to 
> Postgresql (servers Linux) and SQLserver (servers Windows). And the 
> libpq++ works in C++ if I reject the idea of use ODBC.
> 
>  
> 
> Any help will be appreciated.
> 
>  
> 
> Thans
> 
>  
> 
> Jose Mendoza
> 
> unixos@prodigy.net.mx <mailto:unixos@prodigy.net.mx>
> 
>  
> 
>  
> 
>  
> 


pgsql-sql by date:

Previous
From: Michael Fuhr
Date:
Subject: Re: Formatting an Interval
Next
From: Miles Keaton
Date:
Subject: one table being used for two purposes with foreign key for each?