You are not logged in.
Pages: 1
In MSSQL DB: A table has 13 columns, all type are int. There are 30 rows, All fields have null data but Field1 and Field2.
If exec 'select * from tbl' , break here:
//---------------------------------------------------------------------------
Line:
procedure TSQLDBProxyStatementAbstract.IntHeaderProcess(Data: PByte; DataLen: integer);
...
...
if (fColumnCount>sizeof(TSQLDBProxyStatementColumns)shl 3) or
(cardinal(fDataRowCount)>=cardinal(DataLen) div cardinal(fColumnCount)) then
break;
...
//---------------------------------------------------------------------------
Kind Regards.
Last edited by delphi_911 (2018-07-28 08:51:23)
Offline
Pages: 1