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