How can I execute a sql command with a blob param in dbx? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T14:52:45Zhttp://stackoverflow.com/feeds/question/325874http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/325874/how-can-i-execute-a-sql-command-with-a-blob-param-in-dbx2How can I execute a sql command with a blob param in dbx?Fabio Gomes2008-11-28T14:26:38Z2009-09-24T15:29:15Z
<p>I have a TSqlDataSet which has a blob field, I need to get the data of this blob field in the BeforeUpdateRecord event of the provider and execute an update command, I've tried this:</p>
<pre><code>Cmd := TSQLQuery.Create(nil);
try
Cmd.SQLConnection := SQLConnection;
Cmd.CommandText := 'UPDATE MYTABLE SET IMAGE = :PIMAGE WHERE ID = :PID';
Cmd.Params.CreateParam(ftBlob, 'PIMAGE ', ptInput).Value := DeltaDS.FieldByName('IMAGE').NewValue; //blob field
Cmd.Params.CreateParam(ftString, 'PID', ptInput).Value := DeltaDS.FieldByName('ID').NewValue;
Cmd.ExecSQL;
finally
Cmd.Free;
end;
</code></pre>
<p>When I execute that I get an EDatabaseError with message: 'No value for parameter PIMAGE.</p>
<p>What am I missing?</p>
http://stackoverflow.com/questions/325874/how-can-i-execute-a-sql-command-with-a-blob-param-in-dbx/327089#3270890Answer by Argalatyr for How can I execute a sql command with a blob param in dbx?Argalatyr2008-11-29T02:56:54Z2008-11-29T02:56:54Z<p>Have you tried testing with another driver (e.g. ODBC)? It's possible that the error is not in your code. This approach (changing data providers/drivers) has helped me with some confusing problems that turned out not to be mine.</p>
http://stackoverflow.com/questions/325874/how-can-i-execute-a-sql-command-with-a-blob-param-in-dbx/330647#3306472Answer by Fabio Gomes for How can I execute a sql command with a blob param in dbx?Fabio Gomes2008-12-01T12:16:33Z2008-12-01T12:16:33Z<p>Answering my own question, the correct way to do it is the following:</p>
<pre><code>const
SQL = 'UPDATE MYTABLE SET IMAGE = :PIMAGE WHERE ID = :PID;';
var
Params: TParams;
begin
Params := TParams.Create(nil);
try
Params.CreateParam(ftBlob, 'PIMAGE', ptInput).AsBlob := DeltaDS.FieldByName('IMAGE').NewValue;
Params.CreateParam(ftString, 'PID', ptInput).Value := DeltaDS.FieldByName('ID').NewValue;
SQLConnection.Execute(SQL, Params);
finally
Params.Free;
end;
end;
</code></pre>
http://stackoverflow.com/questions/325874/how-can-i-execute-a-sql-command-with-a-blob-param-in-dbx/1472441#14724410Answer by pLiNIo aLf.. for How can I execute a sql command with a blob param in dbx?pLiNIo aLf..2009-09-24T15:29:15Z2009-09-24T15:29:15Z<p>Gracias!!!</p>
<p>pLiNIo aLf..</p>