IsolationLevel. Ambiguity
Posted: Mon 03 Nov 2008 22:33
Hello,
using C++ Builder6 and MyDac 5.20.1.14
When i try to compile the program with following code
the error is
With ilSerializable the same error but everything fine with ilReadUnCommitted and ilRepeatableRead
When i write
error
So Craccess is class of Builder
When i try to write
error
however, i have #pragma link "DBAccess"
So what should i do?
using C++ Builder6 and MyDac 5.20.1.14
When i try to compile the program with following code
Code: Select all
MyConnection->IsolationLevel = ilReadCommittedCode: Select all
ambiguity between 'ilReadCommitted' and 'Craccess::ilReadCommitted'When i write
Code: Select all
MyConnection->IsolationLevel = Craccess::ilReadCommittedCode: Select all
Assingning TCRIsolationLevel to TMyIsolationLevelWhen i try to write
Code: Select all
MyConnection->IsolationLevel = DBAccess::ilReadCommittedCode: Select all
'DBAccess' is not a class or namespace nameSo what should i do?