Re: libpq: Newbie help w/ data type conversions on

Поиск
Список
Период
Сортировка
От jtv@xs4all.nl
Тема Re: libpq: Newbie help w/ data type conversions on
Дата
Msg-id 13236.202.47.227.25.1112321585.squirrel@202.47.227.25
обсуждение исходный текст
Ответ на Re: libpq: Newbie help w/ data type conversions on  (Marvin Bellamy <marvin.bellamy@innovision.com>)
Ответы Re: libpq: Newbie help w/ data type conversions on
Список pgsql-interfaces
Marvin Bellamy <marvin.bellamy@innovision.com> wrote:

> I'm building for MSVC 7.1.3088, VS .NET 2003 on Win XP.  I copied the
> compiler headers and pointed the common file attributes to my PostgreSQL
> install and I get this error:
>
> [snip]
> ..\src\util.cxx(60) : warning C4244: 'initializing' : conversion from
> 'double' to 'const float', possible loss of data
> ..\src\util.cxx(60) : error C2124: divide or mod by zero

Ah, that's a bit of workaround code for compilers that don't have proper
ways of producing NANs.  The sample configuration headers for your
compiler don't say yet whether those proper ways are available, so the
code assumes the worst and reverts to divide-by-zero (strictly at compile
time, mind you, so neither the warning or the error is really appropriate)
to generate NaNs.

Easiest fix: define the PQXX_HAVE_QUIET_NAN preprocessor macro.  If that
doesn't work (i.e. if the compiler doesn't provide quiet_NaN()), define
PQXX_HAVE_NAN instead.  I can release an update over the coming days that
fixes this, once I'm sure about what works.


> I was able to build libpqxx with cygwin (which probably uses gcc), but
> it produced libpqxx.la and libpqxx.a.  Since my IDE is Visual Studio
> .NET 2003, I'm not sure if I can use them in a MSVC app (mind you I'm
> still learning about native development as a Java developer).  This was

Correct on both counts: cygwin uses gcc, and you can't link object files
or libraries (they're actually almost the same thing) from one C++
compiler with those of another.  The latter is one of the more annoying
aspects of life with C++, and there are complex but good reasons for this
restruction--although thankfully some standardization is happening.


Jeroen




В списке pgsql-interfaces по дате отправления:

Предыдущее
От: Marvin Bellamy
Дата:
Сообщение: Re: libpq: Newbie help w/ data type conversions on
Следующее
От: Marvin Bellamy
Дата:
Сообщение: Re: libpq: Newbie help w/ data type conversions on