Can you access the database server from the 64-bit machine using sqlplus? If not, perhaps you have not properly installed the Oracle client tools/code on the 64-bit machine?
rubberman
Posting Virtuoso
1,565 posts since Mar 2010
Reputation Points: 277
Solved Threads: 179
It may be a Unicode issue in that what you think you are asking for, and what is really on the system are different - single-byte name vs. multi-byte Unicode name. Other than this possibility, I'm out of ideas... :-(
rubberman
Posting Virtuoso
1,565 posts since Mar 2010
Reputation Points: 277
Solved Threads: 179
see this link
http://www.daniweb.com/software-development/vbnet/threads/26939
further more try and use ODBC to connect with database. eg
Oracle ODBC Connection String
Driver={Microsoft ODBC for Oracle};Server=myservername;Uid=myusername;Pwd=mypassword;
Oracle OLEDB Connection String
Provider=msdaora;Data Source=mydemodb;User Id=myusername;Password=mypasswd;
Oracle .Net Connection String
Data Source=mydemodb;User Id=myusername;Password=mypasswd;Integrated Security=no;
hope this helps.
dspnhn
Junior Poster in Training
90 posts since May 2008
Reputation Points: 20
Solved Threads: 13