Compile fails under Borland C++ Builder 5 professional
Compile fails under Borland C++ Builder 5 professional
Hello,
Unfortunatly the compile fails.
In module MyCall.hpp in structure MYSQL_BIND and MYSQL_BIND503 i get
a message like "declaration unterminated" ( translated from german )
on the line TMySqlFieldType buffer_type.
In the moment i work with the demo. But i would really like to by it, if i would be able to use wiht C++ Builder 5.
In the designer it works great. I can open the connection and see the data in the grid.
Thanks for any help
Unfortunatly the compile fails.
In module MyCall.hpp in structure MYSQL_BIND and MYSQL_BIND503 i get
a message like "declaration unterminated" ( translated from german )
on the line TMySqlFieldType buffer_type.
In the moment i work with the demo. But i would really like to by it, if i would be able to use wiht C++ Builder 5.
In the designer it works great. I can open the connection and see the data in the grid.
Thanks for any help
DBAccess->ChangeCursor
Hello,
i have C++Builder Version 5.0 Professional Build 12.34
and MyDAC 4.40.0.21
Till today everything was working. But now i run into a problem. I mention it in this thread because the reason might be my trick to overcome the compiling problem.
I want to switch off the executing cursor. But i cant access the symbol
"DBAccess". The compiler tells me "symbol undefined".
So "DBAccess->ChangeCursor = False" is not possible.
#pragma link "DBAccess" is included in the header of the source.
Thanks
i have C++Builder Version 5.0 Professional Build 12.34
and MyDAC 4.40.0.21
Till today everything was working. But now i run into a problem. I mention it in this thread because the reason might be my trick to overcome the compiling problem.
I want to switch off the executing cursor. But i cant access the symbol
"DBAccess". The compiler tells me "symbol undefined".
So "DBAccess->ChangeCursor = False" is not possible.
#pragma link "DBAccess" is included in the header of the source.
Thanks
Try to omit the unit name in the command:
or use the following syntax:
Code: Select all
ChangeCursor = false;Code: Select all
Dbaccess::ChangeCursor = false;Hello,
I have the same problem with Embarcadero RAD Studio 2010 (Version 14.0.3615.26342 , C++ and Delphi) and MyDac (5.90.0.58 for RAD Studio 2010):
In module MyCall.hpp in structure MYSQL_BIND and MYSQL_BIND503 i get
a message like "declaration unterminated" ( translated from german )
on the line TMySqlFieldType buffer_type.
In the moment I work with the demo. But I would really like to by it later.
Thanks for any help.
I have the same problem with Embarcadero RAD Studio 2010 (Version 14.0.3615.26342 , C++ and Delphi) and MyDac (5.90.0.58 for RAD Studio 2010):
In module MyCall.hpp in structure MYSQL_BIND and MYSQL_BIND503 i get
a message like "declaration unterminated" ( translated from german )
on the line TMySqlFieldType buffer_type.
In the moment I work with the demo. But I would really like to by it later.
Thanks for any help.
Hello,
I reinstalled MyDAC,but I have the same error.
By the way,it is the trial version from MYDAC (5.90.0.58 for RAD Studio 2010), sorry.
My Project is a VCL form application.
Steps:
- adding a TMyConnection component on the main form (drag&drop),
at this time the *.hpp files will be included.
- try to compile the project,the error occurs:
In module MyCall.hpp in structure MYSQL_BIND and MYSQL_BIND503
a message like "declaration unterminated" ( translated from german )
on the lines with "TMySqlFieldType buffer_type".
I reinstalled MyDAC,but I have the same error.
By the way,it is the trial version from MYDAC (5.90.0.58 for RAD Studio 2010), sorry.
My Project is a VCL form application.
Steps:
- adding a TMyConnection component on the main form (drag&drop),
at this time the *.hpp files will be included.
- try to compile the project,the error occurs:
In module MyCall.hpp in structure MYSQL_BIND and MYSQL_BIND503
a message like "declaration unterminated" ( translated from german )
on the lines with "TMySqlFieldType buffer_type".