We upgraded to Delphi 2010 and Win 7. (using Oracle 11)
My plugin did recompile and build without any problems. When deploying the DLL the plugin does not work at all anymore:
I debugged a little an saw that I only get cryptic returns for different built in functions:
For example the following returns a somewhat strange result (so far this worked like a charm)
procedure OnConnectionChange;
var
L_username: PWideChar;
L_password: PWideChar;
L_DB: PWideChar;
begin
c := IDE_Connected;
IDE_MenuState(PlugInID, 5, c);
IDE_GetConnectionInfo(L_username,L_password,L_DB);
ShowMessage('User: ' + L_username + ' PW ' + L_password + ' @ ' + L_DB);
This code is executed immediately after login of PL/SQL Developper. The message box appearing only contains cryptical asian signs.
Error
Any idea?
Prior to the infrastructure change everything worked perfectly.
TKO
My plugin did recompile and build without any problems. When deploying the DLL the plugin does not work at all anymore:
I debugged a little an saw that I only get cryptic returns for different built in functions:
For example the following returns a somewhat strange result (so far this worked like a charm)
procedure OnConnectionChange;
var
L_username: PWideChar;
L_password: PWideChar;
L_DB: PWideChar;
begin
c := IDE_Connected;
IDE_MenuState(PlugInID, 5, c);
IDE_GetConnectionInfo(L_username,L_password,L_DB);
ShowMessage('User: ' + L_username + ' PW ' + L_password + ' @ ' + L_DB);
This code is executed immediately after login of PL/SQL Developper. The message box appearing only contains cryptical asian signs.
Error
Any idea?

Prior to the infrastructure change everything worked perfectly.
TKO
Last edited: