| List: | MySQL++ | « Previous MessageNext Message » | |
| From: | Chris Frey | Date: | December 15 2004 8:19pm |
| Subject: | 64 bit - a place to watch | ||
| View as plain text | |||
Just a heads up.
Was reading through the code, trying to grok how all the pieces fit, and
came across the following in SQLString (sql_string.h):
SQLString (char i) : is_string(false), processed(false)
{char s[6]; sprintf(s,"%dh",(short int)i); *this=s;}
SQLString (unsigned int i) : is_string(false), processed(false)
{char s[11]; sprintf(s,"%u",i); *this=s;}
Things like that will need to be revisited when moving to 64 bit, I suspect.
- Chris
| Thread | ||
|---|---|---|
| • 64 bit - a place to watch | Chris Frey | 15 Dec |
| • Re: 64 bit - a place to watch | Warren Young | 16 Dec |
| • Re: 64 bit - a place to watch | Chris Frey | 17 Dec |
| • Re: 64 bit - a place to watch | Warren Young | 17 Dec |
| • Re: 64 bit - a place to watch | Chris Frey | 17 Dec |
| • Re: 64 bit - a place to watch | Warren Young | 17 Dec |
| • RE: 64 bit - a place to watch | Gregory Haley | 17 Dec |
