Обсуждение: NAN-Values in ECPG-Code
Greetings, this is my first post in an newslist, so pleas be patient, if I made some formal mistakes. I have a Question: Im writing a program in c using the ecpg-library. How can I insert a float-value like 'NAN' or 'infinity' into a recordset? ( this is only an example ... ) EXEC SQL BEGIN DECLARE SECTION; Int paramid; Float fval; EXEC SQL END DECLARE SECTION; paramid = 5; fval = 'NAN'; EXEC SQL INSERT INTO test ( paramid, value ) VALUES ( :paramid, :fval ); This is only working for 'normal' values, but not for the special's - NAN and INFINITY... Can You help me, and tell me how to do it? I would be very thankful. Mit freundlichen Grüßen aus Krefeld, With best regards from Krefeld, MBS GmbH - Entwicklung i.A. René Grün E-Mail: Rene.Gruen@mbs-software.de Visit us in the world wide web: Besuchen Sie uns im Internet: http://www.mbs-software.de -- MBS Gesellschaft für Entwicklung und Handel von Software und Investitionsgütern mbH Römerstraße 15, D-47809 Krefeld Geschäftsführer: Martin Brust-Theiß, Gerhard Memmen-Krüger Registergericht Krefeld HRB 3337 Ust.-ID:DE 120 148 529
On Fri, Jun 15, 2007 at 03:38:03PM +0200, René Grün wrote:
> I have a Question:
Sorry for the late answer, but I still have a backlog in my emails.
> EXEC SQL BEGIN DECLARE SECTION;
> Int paramid;
> Float fval;
> EXEC SQL END DECLARE SECTION;
>
> paramid = 5;
> fval = 'NAN';
How about this?
fval = strtod("nan", NULL);
> Mit freundlichen Grüßen aus Krefeld,
> With best regards from Krefeld,
Being very close in Moenchengladbach I hope this helps.
Michael
--
Michael Meskes
Email: Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org)
ICQ: 179140304, AIM/Yahoo: michaelmeskes, Jabber: meskes@jabber.org
Go SF 49ers! Go Rhein Fire! Use Debian GNU/Linux! Use PostgreSQL!