show/hide this revision's text 2 Damn markup codes!

You should not save them as strings. You should use uniqueidentifier. The two functions to use are GUIDToString and StringToGUID (not the str-ones).

If you copy values from the active directory (comes as ftVarBytes) you can use assign which does the magic for you:

QueryIns.Parameters.ParamByName('GUID').Assign(Query.FieldByName('objectGUID'));

If you want to extract the objectGUID from AD you need to cast the objectGUID to uniqueidentifier:

Query.SQL.Add('select cast(objectGUID as uniqueidentifier) as objectGUID');
Query.SQL.Add('from vwADGroups');
Query.Open;
while not Query.Eof do
begin
Index := List.IndexOfName(Query.FieldByName('objectGUID').AsString);
..
end;

show/hide this revision's text 1

You should not save them as strings. You should use uniqueidentifier. The two functions to use are GUIDToString and StringToGUID (not the str-ones).

If you copy values from the active directory (comes as ftVarBytes) you can use assign which does the magic for you:

QueryIns.Parameters.ParamByName('GUID').Assign(Query.FieldByName('objectGUID'));

If you want to extract the objectGUID from AD you need to cast the objectGUID to uniqueidentifier:

Query.SQL.Add('select cast(objectGUID as uniqueidentifier) as objectGUID'); Query.SQL.Add('from vwADGroups'); Query.Open; while not Query.Eof do begin Index := List.IndexOfName(Query.FieldByName('objectGUID').AsString); .. end;