473,835 Members | 1,752 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

UTF8/Unicode database access query

This is one of those issues that doesn't clearly fit into a single category
as it's both a C# and a database (mySql) issue.

I want to INSERT and SELECT text in UTF8 from a C# application to mySql.

My database character set is UTF8. I am using the native .NET provider from
mysql.com. Everything is at the current version.

My C# code for INSERT looks like this:

cmdMySql.Comman dText = "INSERT INTO tblCommunity (Details) VALUES
(?Details)";
MySqlParameter P = new MySqlParameter( );
P.MySqlDbType = MySqlDbType.Str ing;
P.ParameterName = "?Details";
P.Value = "Any Russian text string";
cmdMySql.Parame ters.Add(P);
cmdMySql.Execut eNonQuery();

This works, but my Unicode text (Russian) ends up as ??????????????? ????? in
the database. When I'm in the C# debugger, I can see the Russian text as I
step through the code. So I know my problem is somewhere in how I'm passing
the data to the database. I have also tried a vanilla INSERT statement with
no parameters. It also gives me ??????????? for the Russian text. And if
my string mixes English and Russian, the English text is fine.

Does anyone have any ideas as to what I'm doing wrong?

Thanks.

Bob
Nov 16 '05 #1
4 6080
Bob Sillett <si************ ***@ABCREMOVE.y ahoo.com> wrote:
This is one of those issues that doesn't clearly fit into a single category
as it's both a C# and a database (mySql) issue.
Actually, I'm not sure that it's C#-specific at all. .NET-specific
maybe, but not C#. Anyway, that goes for a good number of other
questions here, so on we go...
I want to INSERT and SELECT text in UTF8 from a C# application to mySql.

My database character set is UTF8. I am using the native .NET provider from
mysql.com. Everything is at the current version.

My C# code for INSERT looks like this:

cmdMySql.Comman dText = "INSERT INTO tblCommunity (Details) VALUES
(?Details)";
MySqlParameter P = new MySqlParameter( );
P.MySqlDbType = MySqlDbType.Str ing;
P.ParameterName = "?Details";
P.Value = "Any Russian text string";
cmdMySql.Parame ters.Add(P);
cmdMySql.Execut eNonQuery();

This works, but my Unicode text (Russian) ends up as ??????????????? ????? in
the database. When I'm in the C# debugger, I can see the Russian text as I
step through the code. So I know my problem is somewhere in how I'm passing
the data to the database. I have also tried a vanilla INSERT statement with
no parameters. It also gives me ??????????? for the Russian text. And if
my string mixes English and Russian, the English text is fine.

Does anyone have any ideas as to what I'm doing wrong?


It sounds like the MySql provider is mucking things up. Is there
anything you can put on the connection string to tell it what character
set to use?

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #2
Bob Sillett wrote:
This is one of those issues that doesn't clearly fit into a single category
as it's both a C# and a database (mySql) issue.

I want to INSERT and SELECT text in UTF8 from a C# application to mySql.

My database character set is UTF8. I am using the native .NET provider from
mysql.com. Everything is at the current version.

My C# code for INSERT looks like this:

cmdMySql.Comman dText = "INSERT INTO tblCommunity (Details) VALUES
(?Details)";
MySqlParameter P = new MySqlParameter( );
P.MySqlDbType = MySqlDbType.Str ing;
P.ParameterName = "?Details";
P.Value = "Any Russian text string";
cmdMySql.Parame ters.Add(P);
cmdMySql.Execut eNonQuery();

This works, but my Unicode text (Russian) ends up as ??????????????? ????? in
the database. When I'm in the C# debugger, I can see the Russian text as I
step through the code. So I know my problem is somewhere in how I'm passing
the data to the database. I have also tried a vanilla INSERT statement with
no parameters. It also gives me ??????????? for the Russian text. And if
my string mixes English and Russian, the English text is fine.

Does anyone have any ideas as to what I'm doing wrong?


Are you sure you're using a MySQL server version (>= 4.1)
with UTF-8 support? You also need a quite up-to-date .NET
mysql-connector (ByteFX.Data) >= 0.9.

bye
Rob
Nov 16 '05 #3
Hi, Jon.

I cannot find any connection string options for character set. But that
doesn't mean that one doesn't exsit. As with many open source programs,
documentation tends to lag behind the actual code. For example, there is a
connection string option to enable ZIP-based compression. It's not listed
in the documentation, but is supported.

My main purpose to posting to this group was to see if I was doing something
fundamentally wrong in C# with the Unicode data. That is, if I needed to
run a text encoder or something.

I'll see what I can come up with in the mySql groups.

Thanks again.

Bob


Nov 16 '05 #4
Bob Sillett <si************ ***@ABCREMOVE.y ahoo.com> wrote:
I cannot find any connection string options for character set. But that
doesn't mean that one doesn't exsit. As with many open source programs,
documentation tends to lag behind the actual code. For example, there is a
connection string option to enable ZIP-based compression. It's not listed
in the documentation, but is supported.

My main purpose to posting to this group was to see if I was doing
something fundamentally wrong in C# with the Unicode data. That is,
if I needed to run a text encoder or something.
You really shouldn't need to, no. If you do, it's a definite deficiency
in the provider.
I'll see what I can come up with in the mySql groups.


Righto. If you could post back here to let us know what happens, I'd be
grateful - I've heard about similar problems before, but haven't heard
the answer...

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
5047
by: sinasalek | last post by:
i have a problem with MySQL 4.1.x and UTF8. in version 4.0, i'm using html forms with utf8 charset for inserting unicode strings. but in version 4.1.x it is not working! if i change the charset of column, ALTER TABLE `icons` CHANGE `name_farsi` `name_farsi` VARCHAR( 99 ) CHARACTER SET utf8 COLLATE utf8_persian_ci DEFAULT NULL and change default charset of database like below code :
5
6932
by: Richard Lewis | last post by:
Hi there, I'm having a problem with unicode files and ftplib (using Python 2.3.5). I've got this code: xml_source = codecs.open("foo.xml", 'w+b', "utf8") #xml_source = file("foo.xml", 'w+b') ftp.retrbinary("RETR foo.xml", xml_source.write)
6
18339
by: Spamtrap | last post by:
I only work in Perl occasionaly, and have been searching for a solution for a conversion, and everything I found seems much too complex. All I need to do is take a simple text file and copy it, however some specific lines are in fact in UTF8 as printed garbagy characters and they need to be converted to Unicode, so that the new text file can be imported into a desktop program and into some Word documents. For the moment I would be...
3
7782
by: hunterb | last post by:
I have a file which has no BOM and contains mostly single byte chars. There are numerous double byte chars (Japanese) which appear throughout. I need to take the resulting Unicode and store it in a DB and display it onscreen. No matter which way I open the file, convert it to Unicode/leave it as is or what ever, I see all single bytes ok, but double bytes become 2 seperate single bytes. Surely there is an easy way to convert these mixed...
16
8512
by: Greg Miller | last post by:
I have an application that uses sqlite3 to store job/error data. When I log in as a German user the error codes generated are translated into German. The error code text is then stored in the db. When I use the fetchall() to retrieve the data to generate a report I get the following error: Traceback (most recent call last): File "c:\Pest3\Glosser\baseApp\reportGen.py", line 199, in OnGenerateButtonNow self.OnGenerateButton(event)
11
3188
by: beachboy | last post by:
Hello all, I am building a CMS which has 2 language: English & Traditional Chinese my problem is all data are represent as "?????????", all pagecode are set to utf8 do I need to encoding(-> utf8) before insert into DB? OR do I need to do anything when content display? Thanks in advanced.
3
2607
by: Joshua Morgan | last post by:
Hey, Currently me and a friend are coding up a new BitTorrent tracker. We have a torrents table that has a column called 'info_hash' which contains the info_hash as received by the announce.php script (this is used to identify the torrent). If we have the collation as latin1_general_ci, and I don't send any SET NAMES OR SET CHARACTER SET queries after connecting, my announce script can successfully retrieve the row from the torrents...
1
5362
by: Server Applications | last post by:
Hello I am trying to build a system where I can full-text index documents with UTF8 or UTF16 data using Oracle Text. I am doing the filtering in a third-party component outside the database, so the I dont need filtering in Oracle, but only indexing. If I put file references to the filtered files in the database and index these (using FILE_DATASTORE), everything works fine. But I rather put the filtered data in the database, and index it...
8
2667
by: Yves Dorfsman | last post by:
Can you put UTF-8 characters in a dbhash in python 2.5 ? It fails when I try: #!/bin/env python # -*- coding: utf-8 -*- import dbhash db = dbhash.open('dbfile.db', 'w') db = u'☺'
0
9653
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10815
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10526
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10563
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7770
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5640
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5808
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3999
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3094
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.