How to set a GUID as ADO query parameters from Delphi? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T06:29:01Z http://stackoverflow.com/feeds/question/295511 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/295511/how-to-set-a-guid-as-ado-query-parameters-from-delphi 1 How to set a GUID as ADO query parameters from Delphi? Thomas Mueller 2008-11-17T12:53:55Z 2009-07-28T08:50:46Z <p>MS Access allows the numeric type GUID (in German it's called 'Replikations-ID', so I guess in English that would be 'replication id') which is stored as a 16 byte binary field in the database.</p> <p>I found how to access these fields in Delphi with <code>TAdoQuery</code>/<code>TAdoTable</code> using <code>TGuidField(...).AsGuid</code>, but now I want to execute an SQL-Query like this:</p> <pre><code>select * from SomeTable where SomeGuidField=:AGuid </code></pre> <p>I tried setting a <code>TAdoQuery</code>'s SQL property to the above statement but found no way to actually set the <code>AGuid</code>-Parameter so the query can be opened. Whatever I tried resulted in the (ADO/COM) error "No value given for one or more required parameters", e.g.:</p> <pre><code>TheQuery.ParamByName('AGuid').Value := QuotedString(GuidToStr(AGuid)); TheQuery.Open; // &lt;&lt;== crashes here </code></pre> <p>This doesn't work either:</p> <pre><code>TheQuery.ParamByName('AGuid').Value := GuidToStr(AGuid); TheQuery.Open; // &lt;&lt;== crashes here </code></pre> <p>I had a look at how <code>TGuidField(...).AsGuid</code> works and found that it first converts the GUID to a string and then the string to a variant (and vice versa).</p> <p>It works fine, if I always generate the SQL-Statement like this:</p> <pre><code>select * from SomeTable where SomeGuidField='&lt;a guid goes here&gt;' </code></pre> <p>As I am passing that <code>TAdoQuery</code> object around in the program I would like to only change the <code>AGuid</code>-Parameter to keep most methods agnostic on the actual SQL-Statement.</p> <p>Is there any other way to set a GUID-Parameter than always change the complete SQL-Statement?</p> <p>(It must be a GUID because I need a globally unique identifier to synchronize with other databases which are MS SQL or MS Access based.)</p> <p>edit: vradmilovic is right, this works:</p> <pre><code>TheQuery.ParamByName('AGuid').Value := GuidToStr(AGuid); TheQuery.Open; </code></pre> <p>I don't understand why it didn't work the first time I tried it.</p> http://stackoverflow.com/questions/295511/how-to-set-a-guid-as-ado-query-parameters-from-delphi/295549#295549 3 Answer by DonOctavioDelFlores for How to set a GUID as ADO query parameters from Delphi? DonOctavioDelFlores 2008-11-17T13:14:31Z 2008-11-17T13:14:31Z <p>did you try</p> <pre><code>TheQuery.ParamByName('AGuid').AsGuid := AGuid; </code></pre> <p>????</p> http://stackoverflow.com/questions/295511/how-to-set-a-guid-as-ado-query-parameters-from-delphi/295571#295571 0 Answer by Steve for How to set a GUID as ADO query parameters from Delphi? Steve 2008-11-17T13:37:07Z 2008-11-17T13:37:07Z <p>If you are sure the parameter is a TGuid, then the following should work :</p> <pre><code>TGuidField(TheQuery.ParamByName('AGuid')).AsGuid </code></pre> <p>Although this does a GuidToString internally, so the problem maybe the same. Worth a try!</p> http://stackoverflow.com/questions/295511/how-to-set-a-guid-as-ado-query-parameters-from-delphi/295577#295577 1 Answer by Vladimir Radmilovic for How to set a GUID as ADO query parameters from Delphi? Vladimir Radmilovic 2008-11-17T13:40:41Z 2008-11-17T13:40:41Z <p>That's correct way to set parameters with ADO. The message you get is most probably due to typo with some of fields (you get same message if field does not exist).</p> http://stackoverflow.com/questions/295511/how-to-set-a-guid-as-ado-query-parameters-from-delphi/877537#877537 0 Answer by Alin Sfetcu for How to set a GUID as ADO query parameters from Delphi? Alin Sfetcu 2009-05-18T12:41:30Z 2009-05-18T12:41:30Z <p>for what is worth i`m using GUIDs but I save them in DB as strings;</p> http://stackoverflow.com/questions/295511/how-to-set-a-guid-as-ado-query-parameters-from-delphi/1192730#1192730 0 Answer by henrik carlsen for How to set a GUID as ADO query parameters from Delphi? henrik carlsen 2009-07-28T08:41:23Z 2009-07-28T08:50:46Z <p>You should not save them as strings. You should use uniqueidentifier. The two functions to use are GUIDToString and StringToGUID (not the str-ones).</p> <p>If you copy values from the active directory (comes as ftVarBytes) you can use assign which does the magic for you:</p> <blockquote> <p>QueryIns.Parameters.ParamByName('GUID').Assign(Query.FieldByName('objectGUID'));</p> </blockquote> <p>If you want to extract the objectGUID from AD you need to cast the objectGUID to uniqueidentifier:</p> <blockquote> <p>Query.SQL.Add('select cast(objectGUID as uniqueidentifier) as objectGUID');<br /> Query.SQL.Add('from vwADGroups');<br/> Query.Open;<br /> while not Query.Eof do<br /> begin<br /> Index := List.IndexOfName(Query.FieldByName('objectGUID').AsString);<br /> ..<br /> end;<br /></p> </blockquote>