Skip to Main Content

ODP.NET

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!

polish characters

756630Feb 26 2010 — edited Feb 26 2010
Hi
I want to connect to Oracle 9i from application in c#, select some data, and write to MS SQL 2008.
Everything work fine, but in results i don't have any polish characters. When i execute select form SQL PLUS, there are polish characters.


My code:

OracleConnection conn = MUtility.getOracleConnection();
conn.Open();
string sql = "select ... from ..."
OracleCommand cmd = new OracleCommand(sql, conn);
cmd.CommandType = CommandType.Text;
OracleDataReader rdr = cmd.ExecuteReader();
while (rdr.Read())
{
Console.WriteLine(rdr.GetString(1));
}
This post has been answered by gdarling - oracle on Feb 26 2010
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 26 2010
Added on Feb 26 2010
3 comments
2,959 views