You are not logged in.
Pages: 1
Thank you very much, it worked perfectly. Tested with 260 columns.
I have hit same limit for a table with more than 256 columns, will there be a change or correction for the hard coded limit?
Thanks, I'll check the changes.
Now it works like the example below
client := TSQLDBWinHTTPConnectionProperties.Create('127.0.0.1:8092', 'syndbremote', 'synopse', 'synopse');
updatecount := client.ExecuteInlined('update tablename set field1 = 10 where pkfield=1',[],False).Instance.UpdateCount;
// or
updatecount := client.ExecuteNoResult('update tablename set field1 = 10 where pkfield=1',[]);
How to return the number of rows affected from a sql command update or delete?
I would like to use method ExecuteInlined to this.
any help is appreciated
Pages: 1