How can I execute a sql command with a blob param in dbx? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T14:52:45Z http://stackoverflow.com/feeds/question/325874 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/325874/how-can-i-execute-a-sql-command-with-a-blob-param-in-dbx 2 How can I execute a sql command with a blob param in dbx? Fabio Gomes 2008-11-28T14:26:38Z 2009-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#327089 0 Answer by Argalatyr for How can I execute a sql command with a blob param in dbx? Argalatyr 2008-11-29T02:56:54Z 2008-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#330647 2 Answer by Fabio Gomes for How can I execute a sql command with a blob param in dbx? Fabio Gomes 2008-12-01T12:16:33Z 2008-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#1472441 0 Answer by pLiNIo aLf.. for How can I execute a sql command with a blob param in dbx? pLiNIo aLf.. 2009-09-24T15:29:15Z 2009-09-24T15:29:15Z <p>Gracias!!!</p> <p>pLiNIo aLf..</p>