Page 1 of 1

ETDSError Delphi Seattle, SDAC 7.3.12; Direct from Android to MSSQL Server

Posted: Sat 03 Mar 2018 08:34
by baumwollschaf
Hi there,

I get the following error when I'm trying to connect directly from an app to a MS SQL Server (Provider prDirect):
'An invalid tabular data stream (TDS) collation was encountered.'

My system:
Delphi Seattle, SDAC 7.3.12 (Pro); Direct from Android to MSSQL Server

The MS SQL database ist located at GearHost.

Does anybody have any idea what can I do?

Thanks in advance.

Kind Regards
baumwollschaf

Re: ETDSError Delphi Seattle, SDAC 7.3.12; Direct from Android to MSSQL Server

Posted: Sat 03 Mar 2018 11:10
by baumwollschaf
Tricky error but solved.

You can't do something like

Code: Select all

Table1BeforeOpen(Sender: TObject);
begin
  Table2.Open;
end;
if you do

Code: Select all

  Table1.Open;
  Table2.Open;
the everything will be fine.

Re: ETDSError Delphi Seattle, SDAC 7.3.12; Direct from Android to MSSQL Server

Posted: Tue 06 Mar 2018 10:00
by Stellar
Please check if there is an issue with the latest SDAC version 8.0.4 when connecting to MS SQL Server with Android apps and inform us about the result.