ODAC 7.0+delphi 2010 in direct mode.
when:
orasession.StartTransaction.
show error ORA-1036
ODAC 7.0.0.1 StartTransaction error!
Hello
If you have ODAC with source code, then please provide me E-mail where I can send fixed file.
If you don't have ODAC with source code, then you can add the following code in the OnAfterConnection event of your TOraSession:
It is temporary workaround until new version will be released.
If you have ODAC with source code, then please provide me E-mail where I can send fixed file.
If you don't have ODAC with source code, then you can add the following code in the OnAfterConnection event of your TOraSession:
Code: Select all
procedure TForm1.OraSession1AfterConnect(Sender: TObject);
begin
if TOraSession(Sender).OracleVersion = '' then
ShowMessage('Oracle version is not defined');
end;