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?