Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search archives
  Advanced Search

Re: OSX ?



 

> -----Original Message-----
> From: pgsql-odbc-owner(at)postgresql(dot)org 
> [mailto:pgsql-odbc-owner(at)postgresql(dot)org] On Behalf Of Tom Lane
> Sent: 15 November 2005 03:03
> To: Horacio Samaniego
> Cc: pgsql-odbc(at)postgresql(dot)org
> Subject: Re: [ODBC] OSX ? 
> 
> Darwin's /usr/include/sqltypes.h has
> 
> /*
>  *  API declaration data types
>  */
> typedef signed int              SQLINTEGER;
> typedef unsigned int            SQLUINTEGER;
> 
> /*
>  *  SQL portable types for C
>  */
> typedef long int                SDWORD;
> typedef unsigned long int       UDWORD;
> 
> and gcc is entirely within its rights to complain that "int" 
> != "long int".
> 
> *Somebody* is not on the right page here.  I would tend to fault
> psqlodbc for inconsistent declarations, but if it works on other
> platforms (as it seems to) maybe there is a general convention
> that SQLINTEGER == SDWORD etc?  If so, Apple didn't get the word.

On Windows in SQLTypes we have:

typedef long            SQLINTEGER;
typedef unsigned long   SQLUINTEGER;

And

typedef long int                SDWORD;
typedef unsigned long int       UDWORD;

In this case I'd tend to go with Microsoft's definitions given that it's
their spec.

I do intend to work on porting psqlODBC to OSX in the not-to-distant
future, however it's not going to be right away I'm afraid, and for the
moment it will only be on Panther (which doesn't support Unicode ODBC).

Regards, Dave.



Home | Main Index | Thread Index

Privacy Policy | About PostgreSQL
Copyright © 1996 – 2012 PostgreSQL Global Development Group