#1 Re: mORMot 1 » FetchAllToBinary - Too Many Columns » 2019-05-20 14:42:54

Thank you very much, it worked perfectly. Tested with 260 columns.

#2 Re: mORMot 1 » FetchAllToBinary - Too Many Columns » 2019-05-16 19:19:18

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?

#3 Re: mORMot 1 » SynDBRemote howto return the number of rows affected » 2017-08-16 13:34:54

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',[]);

#4 mORMot 1 » SynDBRemote howto return the number of rows affected » 2017-08-14 20:20:56

fbkopp
Replies: 3

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

Board footer

Powered by FluxBB