How to set a GUID as ADO query parameters from Delphi? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T06:29:01Zhttp://stackoverflow.com/feeds/question/295511http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/295511/how-to-set-a-guid-as-ado-query-parameters-from-delphi1How to set a GUID as ADO query parameters from Delphi?Thomas Mueller2008-11-17T12:53:55Z2009-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; // <<== crashes here
</code></pre>
<p>This doesn't work either:</p>
<pre><code>TheQuery.ParamByName('AGuid').Value := GuidToStr(AGuid);
TheQuery.Open; // <<== 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='<a guid goes here>'
</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#2955493Answer by DonOctavioDelFlores for How to set a GUID as ADO query parameters from Delphi?DonOctavioDelFlores2008-11-17T13:14:31Z2008-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#2955710Answer by Steve for How to set a GUID as ADO query parameters from Delphi?Steve2008-11-17T13:37:07Z2008-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#2955771Answer by Vladimir Radmilovic for How to set a GUID as ADO query parameters from Delphi?Vladimir Radmilovic2008-11-17T13:40:41Z2008-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#8775370Answer by Alin Sfetcu for How to set a GUID as ADO query parameters from Delphi?Alin Sfetcu2009-05-18T12:41:30Z2009-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#11927300Answer by henrik carlsen for How to set a GUID as ADO query parameters from Delphi?henrik carlsen2009-07-28T08:41:23Z2009-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>