Mydac 8.6.19 bug?
Posted: 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'
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'