Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Remote connection to a database using TOAD, but without Oracle db on PC

634624Aug 16 2008 — edited Nov 1 2008
I want to connect to a remote database using TOAD from my PC but without having to install Oracle database on my PC.
Is it possible?
If yes, where do I enter the database IP address & port number?
I am using TOAD Freeware version 8.5.0.50g

(I want to achieve the exact thing with TOAD as it can be done with "OraCmd" program.)

Comments

Steve.Clamage-Oracle

This question really belongs in the Solaris Studio C/C++/Fortran Compilers forum:

https://community.oracle.com/community/server_%26_storage_systems/systems-development-and-management-tools/application_d…

You don't show how you are building your program, and you don't say which version of Studio you are using, or the platform you are using. All of this data is important to understand your issue.

You are mixing binary code created by the Studio C++ compiler with code built with g++. That will work only under these conditions:

- You must use the -compat=g option with Studio C++ on every CC command, compiling and linking. (If  you are using Studio 12.4, you can use -std=c++03 or -std=c++11 instead.)

- The g++ compiler must be compatible with the version expected by the Studio C++ compiler, which depends on the Studio version.

- Only shared libraries (.so files) created by g++ can be linked, not .o or .a files.

- The compiler (CC or g++)  that builds the main program must be used to link the final program.

If you meet all these conditions and the code still fails, please show

- the Studio version (run the command "CC -V"),

- the g++ version (run "g++ -v"),

- the platform (operating system and version, and whether it is Sparc or x86), and

- show how you build the program.

1 - 1
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Nov 29 2008
Added on Aug 16 2008
16 comments
10,809 views