This works great:
$ sqlplus smiller/m...@oradev
But connecting to the same db from the same box with this OCCI C++:
std::string user("smiller");
std::string pswd("mill");
std::string db("oradev");
Environment *env = Environment::createEnvironment();
Connection *conn = env->createConnection(user,pswd,db);
gives
ORA-01017: invalid username/password; logon denied
what stupid thing am I missing?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Oracle PL/SQL" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Oracle-PLSQL?hl=en
-~----------~----~----~----~------~----~------~--~---