On Sat, Jan 31, 2004 at 10:06:04PM -0500, Michael Stassen wrote:
> Meanwhile, perhaps a simpler workaround would be to change how you build
> the query in Perl so as to avoid the quotes.
Well, I know that this would be easy but I have good reasons to avoid this.
The most important one is lru sta
On Sat, Jan 31, 2004 at 10:06:04PM -0500, Michael Stassen <[EMAIL PROTECTED]> wrote:
> Meanwhile, perhaps a simpler workaround would be to change how you build
> the query in Perl so as to avoid the quotes.
Unfortunately, the heuristic that DBD::mysql uses cannot be changed or
forced. Currently,
I think the problem has nothing to do with &. Taking the & out of your
examples leaves you with:
mysql> select '9223372036854775809' + 0;
+---+
| '9223372036854775809' + 0 |
+---+
| 9.2233720368548e+18 |
+---+
mysql> s
WOW !!
The story goes on:
I wrote the UDF-Functions (and64/or64) and while and it seems
to work:
mysql> select and64('9223372036854775809',127);
+--+
| and64('9223372036854775809',127) |
+--+
|1 |
+--