Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
Delphi 10.2 Tokyo Professional
|
AW: Set of Enumeration Type in Datenbank-Parameter zuweisen
10. Jun 2014, 14:32
Hallo,
Hab grad rumprobiert und hatte auch so meine Probleme, aber so gehts:
Delphi-Quellcode:
var b: Byte;
begin
// ...
value.ExtractRawData(@b);
qry.ParamByName('FLAGS').AsInteger := b;
// ODER
qry.ParamByName('FLAGS').AsInteger := PByte(value.GetReferenceToRawData)^;
end;
Michael "Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
Geändert von Neutral General (10. Jun 2014 um 14:36 Uhr)
|