Click here to Skip to main content
15,881,789 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i am having issue when fetching data from oracle in windows form application in vb.net using System.Data.OracleClient that changes the string in junk symbolic string ....

I have used oracledatareader and oracledataadapter to get data from oracle database 9i and with vb.net 2008(3.5) with 32 bit application.

i have posted the link of my issue image.

![After Fetching Data It Changes To Symbols][1]

http://postimg.org/image/c1eqnxp4n/
Posted
Comments
DamithSL 26-Dec-14 5:52am    
what are the column data types of process and "to location" columns?
can you update the question with how you insert data?
Member 10540150 26-Dec-14 5:57am    
datatype is varchar2 and i am only fetching data using select command

1 solution

Based on the description could it be that you have different character set settings on server and client. See http://docs.oracle.com/html/B13804_02/gblsupp.htm[^]

Depending on the client installation the character set is defined either in registry under Oracle or as a environment variable.

For the server side, you can check the selected character set for example from v$parameter view.

Also the Microsoft version of Oracle client is deprecated so I strongly recommend to use ODP.NET[^]
 
Share this answer
 
v2
Comments
Member 10540150 3-Jan-15 5:17am    
thanks a lot ...
Wendelius 3-Jan-15 5:32am    
You're welcome :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900