PLSQL Developer and TFS

Hi,
our team recently switched from MKS Source Integrity to Team Foundation Server for source control. Calling PL/SQL developer from MKS was easy because it used the editor which was defined by the system but Visual Studio is more resistant to this. So question is:
Is there a possibility to directly open an sql file in PL/SQL developer from the Source Explorer window? I already tried to define PL/SQL Developer as an external tool but I am not sure what arguments plsqldev.exe is using (if at all). So PL/SQL developer opens if I call it as external tool but not with the marked file for example.
Is there any way to accomplish that?

Regards,
Andre
 
All you need to do is pass the file name:

plsqldev.exe c:\temp\test.sql

You can also implicitly log on:

plsqldev.exe userid=scott/tiger@chicago c:\temp\test.sql

For more command-line parameters, see the corresponding chapter in the User's Guide.
 
Back
Top