Mydac 8.6.19 bug?

Discussion of open issues, suggestions and bugs regarding MyDAC (Data Access Components for MySQL) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
tehowden
Posts: 2
Joined: Thu 29 Oct 2015 18:07

Mydac 8.6.19 bug?

Post by tehowden » Thu 29 Oct 2015 18:32

Anyone have a problem with sql sentence with parameters. I have the problem that a sentencelike this

select * from tablexx
where name = :par_name

This simple sentence is enough to crash the app in windows 64 bit but not in 32 bit.
Using embarcadero ver 10 seattle

It stops and kills the app with a memory read error.

But this one works
select * from tablexx
where name = 'Howden'

ViktorV
Devart Team
Posts: 3168
Joined: Wed 30 Jul 2014 07:16

Re: Mydac 8.6.19 bug?

Post by ViktorV » Fri 30 Oct 2015 09:51

This error is a known bug of the Win64 compiler. Win64 compilers sometimes generate different code for the same input data. To resolve the issue, you should rebuild the project till the issue disappears. See more details about this bug at: https://quality.embarcadero.com/browse/RSP-12512

Post Reply