You are not logged in.
Pages: 1
Delphi 2007:
[DCC Error] smmFunctions.pas(96): E2107 Operand size mismatch
[DCC Error] smmFunctions.pas(119): E2107 Operand size mismatch
[DCC Error] smmLargeMemory.pas(45): F2063 Could not compile used unit 'smmFunctions.pas'
[ 96] lock cmpxchg dword ptr [aDestination], aNewValue
...
[119] BSF EAX, aValue;
longge007
Try using new obj-files from http://synopse.info/files/sqlite3obj.7z
OK. Thanks.
I found error in unit SQLite3Commons in function TSQLRecord.FieldProp(PropName: PRawUTF8).
Line
if IdemPropName(result^.Name,PropName) then
should be replaced with line
if IdemPropName(result^.Name,PropName^) then
After thjs modification UpdateBlob and RetrieveBlob work for me. I use Delphi 2007.
Thank you.
I wrote June 6 in blog:
Gimme please any example for working with blob fields.
Today is July 1. Answer no found.
I think this is bug in Framework.
Pages: 1