TUniScript.SQL error Parser: The unknown symbol $7F ''

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
EsequiasTorres
Posts: 1
Joined: Thu 26 Oct 2017 01:37

TUniScript.SQL error Parser: The unknown symbol $7F ''

Post by EsequiasTorres » Thu 26 Oct 2017 02:39

I am using Delphi 7 and a TUniScript component of UniDAC 7.1.4 to run SQL statements in MySQL, but when loading the SQL statements, the error "Parser: The unknown symbol $7F ''" appears only when it finds the characters Chr (0141), Chr (0038) and Chr (0127) continuous in the SQL statements.

With this code you can check the error:

Code: Select all

Try UniScript1. SQL Text: = Chr (0141) + Chr (0038) + Chr (0127);
     Except On Error: Exception Do
            Begin
                 InputBox (' Error','', Error. Message);
            End;
     End;
The same error occurs with Embarcadero RAD Studio 10.2 Tokyo.

ViktorV
Devart Team
Posts: 3168
Joined: Wed 30 Jul 2014 07:16

Re: TUniScript.SQL error Parser: The unknown symbol $7F ''

Post by ViktorV » Thu 26 Oct 2017 14:13

Thank you for the information. We have reproduced the problem and it will be fixed in the next build.

Post Reply