Skip to Main Content

SQL Developer

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!

Pb de création d'une première connexion

1040044Sep 13 2013 — edited Sep 14 2013

Bonjour,

J'ai installé Oracle (déjà configuré pour redhat de linux), et j'ai installé par la suite sqldevbeloper, j'ai 2 problèmes:

1 - Le bouton "connexion" n'apparait pas dans l'interface, parcontre j'ai le bouton "tester"

2 - pour créer une nouvelle connexion j'ai saisi les informations ncessaires mais lorsque j'appuie sur le bouton "tester", le message d'erreur s'affiche:

"The Network adapter could not establish the connection"

Ci-dessous les informations saisies pour la connexion:

Nom d'utilisateur: SYS

Mot de passe : mot de passe d'oracle

Type de connexion: de base

Rôle : SYSDBA

Nom d'hôte : localhost

Port : 1521

SID: xe

Quelqu'un peut m'aider sur le sujet?

Merci

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 Oct 12 2013
Added on Sep 13 2013
2 comments
298 views