mysql deal with specail character problem
mysql deal with specail character problem
am 21.04.2011 13:09:02 von tyzhaoqi
--20cf307f38becd378b04a16bc46a
Content-Type: text/plain; charset=GB2312
Content-Transfer-Encoding: quoted-printable
Hi:
I have a table that the field a is primary key;
I insert a record like this
insert into table(a,b,c) values('¼Ã¹«È«´«¢Û',1,1)
Then i insert a record like this
insert into table(a,b,c) values('¼Ã¹«È«´«¢Ú',1,1)
mysql post a error execute failed: Duplicate entry '¼Ã¹«È«=B4=
«¢=DA-1-1' for key 1;
it is strange, the primary key field is not the same, but i get this error.
any one can help me?
Thanks
--20cf307f38becd378b04a16bc46a--
Re: mysql deal with specail character problem
am 21.04.2011 13:24:34 von Johan De Meersman
----- Original Message -----
> From: "èµµç¦"
>
> it is strange, the primary key field is not the same, but i get this
> error.
I'm entirely unsure how MySQL handles non-roman, so I'll start off with a s=
tupid question: are you sure there was no previous entry in the table with =
that value for a ?
--
Bier met grenadyn
Is als mosterd by den wyn
Sy die't drinkt, is eene kwezel
Hy die't drinkt, is ras een ezel
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe: http://lists.mysql.com/mysql?unsub=3Dgcdmg-mysql-2@m.gmane.o rg
RE: mysql deal with specail character problem
am 21.04.2011 15:35:02 von Jerry Schwartz
>-----Original Message-----
>From: ?? [mailto:tyzhaoqi@gmail.com]
>Sent: Thursday, April 21, 2011 7:09 AM
>To: mysql
>Subject: mysql deal with specail character problem
>
>Hi:
>I have a table that the field a is primary key;
>I insert a record like this
>insert into table(a,b,c) values('?????',1,1)
>Then i insert a record like this
> insert into table(a,b,c) values('?????',1,1)
>
>mysql post a error execute failed: Duplicate entry '?????-1-1' for key 1;
>
>it is strange, the primary key field is not the same, but i get this error.
>
>any one can help me?
>
[JS] What is the character set and collation for that field? Please post the
output of
SHOW CREATE TABLE x\G
(Please use the \G, so that the output will fit in your message better.)
There is something wrong with the way your data is going in, because the
commas are not being seen properly. You are putting in
'?????',1,1
but MySQL is showing
'?????-1-1'
in the error message! That is a clue.
I have put plenty of Japanese and Chinese characters into my database, so
don't give up hope.
>Thanks
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe: http://lists.mysql.com/mysql?unsub=gcdmg-mysql-2@m.gmane.org
RE: mysql deal with specail character problem
am 21.04.2011 15:44:22 von Martin Gainty
--_cbc4e693-7e7c-4683-a92b-a57962eba6ad_
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
correct here is the output of INFORMATION_SCHEMA.COLUMNS
Create Table: CREATE TEMPORARY TABLE `COLUMNS` (
`TABLE_CATALOG` varchar(512) DEFAULT NULL=2C
`TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT ''=2C
`TABLE_NAME` varchar(64) NOT NULL DEFAULT ''=2C
`COLUMN_NAME` varchar(64) NOT NULL DEFAULT ''=2C
`ORDINAL_POSITION` bigint(21) unsigned NOT NULL DEFAULT '0'=2C
`COLUMN_DEFAULT` longtext=2C
`IS_NULLABLE` varchar(3) NOT NULL DEFAULT ''=2C
`DATA_TYPE` varchar(64) NOT NULL DEFAULT ''=2C
`CHARACTER_MAXIMUM_LENGTH` bigint(21) unsigned DEFAULT NULL=2C
`CHARACTER_OCTET_LENGTH` bigint(21) unsigned DEFAULT NULL=2C
`NUMERIC_PRECISION` bigint(21) unsigned DEFAULT NULL=2C
`NUMERIC_SCALE` bigint(21) unsigned DEFAULT NULL=2C
`CHARACTER_SET_NAME` varchar(64) DEFAULT NULL=2C
`COLLATION_NAME` varchar(64) DEFAULT NULL=2C
`COLUMN_TYPE` longtext NOT NULL=2C
`COLUMN_KEY` varchar(3) NOT NULL DEFAULT ''=2C
`EXTRA` varchar(27) NOT NULL DEFAULT ''=2C
`PRIVILEGES` varchar(80) NOT NULL DEFAULT ''=2C
`COLUMN_COMMENT` varchar(255) NOT NULL DEFAULT ''
) ENGINE=3DMyISAM DEFAULT CHARSET=3Dutf8
If i had configured utf16 or any character-set which supports DBCS then i *=
could* implement CJK languages in the DB
how goes the recovery ?
Martin=20
______________________________________________=20
Note de d=E9ni et de confidentialit=E9
Ce message est confidentiel et peut =EAtre privil=E9gi=E9. Si vous n'=EAte=
s pas le destinataire pr=E9vu=2C nous te demandons avec bont=E9 que pour sa=
tisfaire informez l'exp=E9diteur. N'importe quelle diffusion non autoris=E9=
e ou la copie de ceci est interdite. Ce message sert =E0 l'information seul=
ement et n'aura pas n'importe quel effet l=E9galement obligatoire. =C9tant =
donn=E9 que les email peuvent facilement =EAtre sujets =E0 la manipulation=
=2C nous ne pouvons accepter aucune responsabilit=E9 pour le contenu fourni=
..
> From: jerry@gii.co.jp
> To: tyzhaoqi@gmail.com=3B mysql@lists.mysql.com
> Subject: RE: mysql deal with specail character problem
> Date: Thu=2C 21 Apr 2011 09:35:02 -0400
>=20
> >-----Original Message-----
> >From: ?? [mailto:tyzhaoqi@gmail.com]
> >Sent: Thursday=2C April 21=2C 2011 7:09 AM
> >To: mysql
> >Subject: mysql deal with specail character problem
> >
> >Hi:
> >I have a table that the field a is primary key=3B
> >I insert a record like this
> >insert into table(a=2Cb=2Cc) values('?????'=2C1=2C1)
> >Then i insert a record like this
> > insert into table(a=2Cb=2Cc) values('?????'=2C1=2C1)
> >
> >mysql post a error execute failed: Duplicate entry '?????-1-1' for key 1=
=3B
> >
> >it is strange=2C the primary key field is not the same=2C but i get this=
error.
> >
> >any one can help me?
> >
> [JS] What is the character set and collation for that field? Please post =
the=20
> output of
>=20
> SHOW CREATE TABLE x\G
>=20
> (Please use the \G=2C so that the output will fit in your message better.=
)
>=20
> There is something wrong with the way your data is going in=2C because th=
e=20
> commas are not being seen properly. You are putting in
>=20
> '?????'=2C1=2C1
>=20
> but MySQL is showing
>=20
> '?????-1-1'
>=20
> in the error message! That is a clue.
>=20
> I have put plenty of Japanese and Chinese characters into my database=2C =
so=20
> don't give up hope.
>=20
> >Thanks
>=20
>=20
>=20
>=20
> --=20
> MySQL General Mailing List
> For list archives: http://lists.mysql.com/mysql
> To unsubscribe: http://lists.mysql.com/mysql?unsub=3Dmgainty@hotmail.c=
om
>=20
=
--_cbc4e693-7e7c-4683-a92b-a57962eba6ad_--
RE: mysql deal with specail character problem
am 21.04.2011 15:48:36 von Steven Staples
On Thu, 2011-04-21 at 09:35 -0400, Jerry Schwartz wrote:
> >-----Original Message-----
> >From: ?? [mailto:tyzhaoqi@gmail.com]
> >Sent: Thursday, April 21, 2011 7:09 AM
> >To: mysql
> >Subject: mysql deal with specail character problem
> >
> >Hi:
> >I have a table that the field a is primary key;
> >I insert a record like this
> >insert into table(a,b,c) values('?????',1,1)
> >Then i insert a record like this
> > insert into table(a,b,c) values('?????',1,1)
> >
> >mysql post a error execute failed: Duplicate entry '?????-1-1' for key 1;
> >
> >it is strange, the primary key field is not the same, but i get this error.
> >
> >any one can help me?
> >
> [JS] What is the character set and collation for that field? Please post the
> output of
>
> SHOW CREATE TABLE x\G
>
> (Please use the \G, so that the output will fit in your message better.)
>
> There is something wrong with the way your data is going in, because the
> commas are not being seen properly. You are putting in
>
> '?????',1,1
>
> but MySQL is showing
>
> '?????-1-1'
>
> in the error message! That is a clue.
>
> I have put plenty of Japanese and Chinese characters into my database, so
> don't give up hope.
>
> >Thanks
Doesn't the '?????-1-1' mean that it's a joined key? so the 3 fields
he's inserting, are part of a multi-field key... but to me, it looks
like the characters are not being seen, or converted to a UTF-8 style
format, rather than the chinese (korean/japanese) character set.. ?
maybe?
sorry if i am out of line here...
Steve.
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe: http://lists.mysql.com/mysql?unsub=gcdmg-mysql-2@m.gmane.org
Re: mysql deal with specail character problem
am 21.04.2011 15:56:28 von Johan De Meersman
----- Original Message -----
> From: "Steve Staples"
>
> Doesn't the '?????-1-1' mean that it's a joined key? so the 3
That's what I tought, but I *can* see the characters he's typed, and the last of what you see as ? is definitely different.
--
Bier met grenadyn
Is als mosterd by den wyn
Sy die't drinkt, is eene kwezel
Hy die't drinkt, is ras een ezel
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe: http://lists.mysql.com/mysql?unsub=gcdmg-mysql-2@m.gmane.org
RE: mysql deal with specail character problem
am 21.04.2011 19:53:04 von Jerry Schwartz
>-----Original Message-----
>From: Johan De Meersman [mailto:vegivamp@tuxera.be]
>Sent: Thursday, April 21, 2011 9:56 AM
>To: sstaples@mnsi.net
>Cc: ??; mysql; Jerry Schwartz
>Subject: Re: mysql deal with specail character problem
>
>----- Original Message -----
>> From: "Steve Staples"
>>
>> Doesn't the '?????-1-1' mean that it's a joined key? so the 3
>
>That's what I tought, but I *can* see the characters he's typed, and the last
>of what you see as ? is definitely different.
>
[JS] That's because his font (or e-mail client) mangled the text, and so his
reply wasn't legible.
Our main office is in Japan, so I go through this all the time.
Regards,
Jerry Schwartz
Global Information Incorporated
195 Farmington Ave.
Farmington, CT 06032
860.674.8796 / FAX: 860.674.8341
E-mail: jerry@gii.co.jp
Web site: www.the-infoshop.com
>
>--
>Bier met grenadyn
>Is als mosterd by den wyn
>Sy die't drinkt, is eene kwezel
>Hy die't drinkt, is ras een ezel
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe: http://lists.mysql.com/mysql?unsub=gcdmg-mysql-2@m.gmane.org
Re: mysql deal with specail character problem
am 22.04.2011 03:19:15 von tyzhaoqi
--000e0cd573dc75759f04a177a5e8
Content-Type: multipart/alternative; boundary=000e0cd573dc75759304a177a5e6
--000e0cd573dc75759304a177a5e6
Content-Type: text/plain; charset=ISO-8859-1
thanks for reply!
The charater set is latin1,and the key field is mangled by the email client.
I up load the actual character of '?????' to the attachment.
2011/4/22 Jerry Schwartz
>
>
> >-----Original Message-----
> >From: Johan De Meersman [mailto:vegivamp@tuxera.be]
> >Sent: Thursday, April 21, 2011 9:56 AM
> >To: sstaples@mnsi.net
> >Cc: ??; mysql; Jerry Schwartz
> >Subject: Re: mysql deal with specail character problem
> >
> >----- Original Message -----
> >> From: "Steve Staples"
> >>
> >> Doesn't the '?????-1-1' mean that it's a joined key? so the 3
> >
> >That's what I tought, but I *can* see the characters he's typed, and the
> last
> >of what you see as ? is definitely different.
> >
> [JS] That's because his font (or e-mail client) mangled the text, and so
> his
> reply wasn't legible.
>
> Our main office is in Japan, so I go through this all the time.
>
>
> Regards,
>
> Jerry Schwartz
> Global Information Incorporated
> 195 Farmington Ave.
> Farmington, CT 06032
>
> 860.674.8796 / FAX: 860.674.8341
> E-mail: jerry@gii.co.jp
> Web site: www.the-infoshop.com
> >
> >--
> >Bier met grenadyn
> >Is als mosterd by den wyn
> >Sy die't drinkt, is eene kwezel
> >Hy die't drinkt, is ras een ezel
>
>
>
>
--000e0cd573dc75759304a177a5e6
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
thanks for reply!
=A0
The charater set is latin1,and the key field is mangled by the email c=
lient.
=A0
I up load the actual character=A0of=A0 '?????' to=A0the attach=
ment.
2011/4/22 Jerry Schwartz
<<=
a href=3D"mailto:jerry@gii.co.jp">jerry@gii.co.jp>
; PADDING-LEFT: 1ex" class=3D"gmail_quote">
>-----Original Message-----
>From: Johan=
De Meersman [mailto:
vegivamp@tuxera.=
be]
>Sent: Thursday, April 21, 2011 9:56 AM
>To:
"mailto:sstaples@mnsi.net">sstaples@mnsi.net
>Cc: ??; mysql; Jerry Schwartz
>Subject: Re: mysql deal with speca=
il character problem
>
>----- Original Message -----
>>=
; From: "Steve Staples" <
=
sstaples@mnsi.net>
>>
>> Doesn't the '?????-1-1' =A0mean that it=
9;s a joined key? =A0so the 3
>
>That's what I tought, but =
I *can* see the characters he's typed, and the last
>of what you =
see as ? is definitely different.
>
[JS] That's because his font (or e-mail client) mangled t=
he text, and so his
reply wasn't legible.
Our main office is =
in Japan, so I go through this all the time.
Regards,
Jerry Schwartz
Global Information Incorporated
195 Farmington Ave.
>Farmington, CT 06032
860.674.8796 / FAX: 860.674.8341
E-mail:
href=3D"mailto:jerry@gii.co.jp">jerry@gii.co.jp
Web site:
=3D"http://www.the-infoshop.com/" target=3D"_blank">www.the-infoshop.com
>
>
>--
>Bier met grenadyn
>Is als mosterd by den wyn
>>Sy die't drinkt, is eene kwezel
>Hy die't drinkt, is ras=
een ezel
--000e0cd573dc75759304a177a5e6--
--000e0cd573dc75759f04a177a5e8
Content-Type: image/bmp; name="{C5A364D2-AA10-4211-AD0E-DBF8B9F93986}.bmp"
Content-Disposition: attachment;
filename="{C5A364D2-AA10-4211-AD0E-DBF8B9F93986}.bmp"
Content-Transfer-Encoding: base64
X-Attachment-Id: f_gmsg5v400
Qk36DgAAAAAAADYAAAAoAAAAPwAAAA8AAAABACAAAAAAAAAAAADEDgAAxA4A AAAAAAAAAAAA////
AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A ////AP///wD///8A
////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD/ //8A////AP///wD/
//8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP// /wD///8A////AP//
/wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A//// AP///wD///8A////
AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A ////AP///wD///8A
////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD/ //8A////AP///wD/
//8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP// /wD///8A////AP//
/wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A//// AP///wD///8A////
AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A ////AP///wD///8A
AAAAAP///wAAAAAA////AP///wD///8A////AAAAAAD///8A////AP///wD/ //8AAAAAAAAAAAAA
AAAAAAAAAAAAAAD///8A////AAAAAAD///8A////AP///wAAAAAAAAAAAAAA AAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wD///8A////AAAAAAD///8A//// AP///wD///8A////
AAAAAAAAAAAA////AP///wD///8A////AP///wAAAAAAAAAAAAAAAAAAAAAA AAAAAP///wD///8A
////AP///wD///8A////AP///wD///8AAAAAAP///wD///8AAAAAAP///wD/ //8A////AAAAAAD/
//8A////AP///wD///8A////AAAAAAD///8A////AP///wAAAAAAAAAAAAAA AAD///8A////AP//
/wD///8A////AP///wD///8A////AAAAAAD///8A////AP///wD///8A//// AP///wD///8A////
AAAAAAD///8A////AAAAAAAAAAAAAAAAAP///wD///8A////AP///wD///8A ////AAAAAAD///8A
////AP///wD///8A////AAAAAAD///8A////AP///wD///8A////AP///wAA AAAAAAAAAP///wD/
//8A////AAAAAAD///8A////AAAAAAD///8A////AP///wD///8A////AP// /wAAAAAA////AP//
/wD///8AAAAAAP///wD///8A////AP///wD///8A////AP///wD///8A//// AAAAAAD///8A////
AP///wD///8A////AP///wD///8A////AAAAAAD///8A////AP///wD///8A ////AAAAAAD///8A
////AP///wD///8AAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAA AAAA////AP///wD/
//8A////AP///wD///8AAAAAAP///wD///8A////AAAAAAD///8A////AAAA AAD///8A////AP//
/wD///8A////AP///wD///8AAAAAAP///wAAAAAA////AP///wD///8A//// AP///wD///8A////
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8A////AP///wD///8A ////AAAAAAD///8A
////AAAAAAAAAAAAAAAAAAAAAAAAAAAA////AP///wAAAAAA////AP///wD/ //8AAAAAAP///wD/
//8AAAAAAP///wD///8AAAAAAP///wD///8A////AP///wD///8AAAAAAP// /wAAAAAAAAAAAP//
/wD///8A////AP///wAAAAAAAAAAAP///wD///8A////AP///wD///8AAAAA AP///wD///8A////
AP///wD///8A////AP///wD///8A////AP///wD///8A////AAAAAAD///8A ////AP///wD///8A
////AP///wD///8A////AAAAAAD///8A////AAAAAAD///8A////AP///wD/ //8A////AP///wAA
AAAA////AP///wD///8A////AAAAAAD///8A////AP///wD///8AAAAAAP// /wD///8A////AP//
/wD///8A////AAAAAAD///8A////AAAAAAD///8A////AAAAAAD///8A//// AP///wAAAAAA////
AP///wD///8A////AAAAAAD///8A////AP///wAAAAAAAAAAAP///wD///8A ////AP///wD///8A
////AAAAAAD///8A////AP///wD///8A////AP///wAAAAAA////AAAAAAAA AAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAAAA////AP///wD///8A////AP// /wAAAAAA////AP//
/wD///8AAAAAAP///wD///8A////AP///wD///8AAAAAAAAAAAD///8A//// AP///wAAAAAAAAAA
AP///wD///8A////AP///wD///8AAAAAAP///wD///8A////AAAAAAD///8A ////AAAAAAD///8A
////AP///wAAAAAAAAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAA AAAAAAAAAP///wD/
//8AAAAAAAAAAAD///8A////AP///wAAAAAA////AP///wD///8A////AP// /wAAAAAA////AP//
/wAAAAAA////AP///wD///8AAAAAAP///wD///8AAAAAAP///wD///8A//// AP///wAAAAAA////
AAAAAAD///8A////AAAAAAD///8AAAAAAP///wD///8A////AP///wD///8A ////AAAAAAD///8A
////AP///wD///8AAAAAAP///wD///8A////AP///wD///8A////AAAAAAD/ //8A////AP///wD/
//8A////AAAAAAD///8A////AP///wD///8A////AAAAAAD///8A////AP// /wAAAAAA////AP//
/wD///8A////AP///wAAAAAA////AP///wAAAAAA////AP///wD///8AAAAA AP///wD///8AAAAA
AP///wD///8A////AP///wD///8A////AP///wD///8AAAAAAP///wD///8A ////AAAAAAD///8A
////AP///wD///8A////AP///wAAAAAA////AP///wD///8AAAAAAP///wD/ //8A////AP///wD/
//8A////AP///wAAAAAA////AP///wD///8AAAAAAP///wD///8A////AP// /wD///8A////AAAA
AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wD///8AAAAA AP///wD///8AAAAA
AAAAAAAAAAAA////AP///wAAAAAA////AP///wD///8A////AP///wD///8A ////AAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wD///8A////AP///wAA AAAA////AP///wAA
AAAA////AP///wD///8A////AP///wD///8A////AP///wD///8AAAAAAP// /wAAAAAA////AP//
/wD///8A////AP///wD///8A////AP///wAAAAAA////AP///wD///8AAAAA AP///wD///8A////
AP///wD///8A////AAAAAAD///8A////AP///wD///8A////AAAAAAD///8A ////AP///wD///8A
////AP///wD///8AAAAAAP///wD///8A////AP///wAAAAAA////AP///wD/ //8A////AP///wD/
//8A////AP///wAAAAAA////AP///wAAAAAA////AP///wD///8A////AP// /wD///8A////AP//
/wD///8A////AAAAAAD///8A////AP///wD///8A////AP///wD///8A//// AP///wAAAAAA////
AP///wD///8AAAAAAP///wD///8A////AP///wD///8A////AP///wAAAAAA AAAAAAAAAAAAAAAA
AAAAAP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD/ //8A////AP///wD/
//8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP// /wD///8A////AP//
/wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A//// AP///wD///8A////
AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A ////AP///wD///8A
////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD/ //8A////AP///wD/
//8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP// /wD///8A////AP//
/wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A//// AP///wD///8A////
AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A ////AP///wD///8A
////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD/ //8A////AP///wD/
//8A////AP///wD///8A
--000e0cd573dc75759f04a177a5e8
Content-Type: image/bmp; name="{8D6FA115-E50C-4089-8246-009DEDCBE3F6}.bmp"
Content-Disposition: attachment;
filename="{8D6FA115-E50C-4089-8246-009DEDCBE3F6}.bmp"
Content-Transfer-Encoding: base64
X-Attachment-Id: f_gmsg62lj1
Qk2uEAAAAAAAADYAAAAoAAAAPgAAABEAAAABACAAAAAAAAAAAADEDgAAxA4A AAAAAAAAAAAA////
AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A ////AP///wD///8A
////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD/ //8A////AP///wD/
//8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP// /wD///8A////AP//
/wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A//// AP///wD///8A////
AP///wD///8A////AP///wD///////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////8AAAD//////wAAAP//////////////////////AAAA//////// //////////////8A
AAD/AAAA/wAAAP8AAAD/AAAA////////////AAAA/////////////////wAA AP8AAAD/AAAA/wAA
AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/////////////////AAAA ////////////////
////////////AAAA/wAAAP///////////////////////////wAAAP8AAAD/ AAAA/wAAAP8AAAD/
/////////////////////////////////////wAAAP///////////wAAAP// //////////////8A
AAD///////////////////////////8AAAD/////////////////AAAA/wAA AP8AAAD/////////
//////////////////////////////////8AAAD///////////////////// ////////////////
//////8AAAD///////////8AAAD/AAAA/wAAAP////////////////////// //////////8AAAD/
//////////////////////////8AAAD///////////////////////////8A AAD/AAAA////////
/////////wAAAP///////////wAAAP////////////////////////////// //8AAAD/////////
////////AAAA//////////////////////////////////////////////// /wAAAP//////////
/////////////////////////////////wAAAP////////////////////// /////wAAAP//////
////////////////AAAA////////////AAAA/wAAAP8AAAD///////////8A AAD/////////////
//////////////8AAAD/////////////////AAAA////////////AAAA//// ////////////////
//////////////////8AAAD//////wAAAP////////////////////////// ////////////AAAA
/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA//////////////////////////// AAAA////////////
AAAA/wAAAP8AAAD/AAAA/wAAAP///////////wAAAP///////////wAAAP// //////////////8A
AAD///////////8AAAD//////////////////////wAAAP//////AAAA/wAA AP//////////////
////////AAAA/wAAAP///////////////////////////wAAAP////////// ////////////////
//////////////////////////////////////8AAAD///////////////// ////////////////
//////////8AAAD///////////8AAAD///////////////////////////// ////AAAA////////
/////////////////////////wAAAP///////////wAAAP////////////// /////////////wAA
AP///////////wAAAP///////////wAAAP////////////////8AAAD///// ////////////////
/wAAAP////////////////8AAAD/AAAA//////////////////////////// /////wAAAP//////
//////////////////////////8AAAD//////wAAAP8AAAD/AAAA/wAAAP8A AAD/AAAA/wAAAP8A
AAD/AAAA//////8AAAD//////////////////////wAAAP8AAAD///////// ////////AAAA////
//////////////////8AAAD/AAAA/////////////////wAAAP8AAAD///// ////////////////
//////8AAAD/////////////////AAAA////////////AAAA//////////// /////wAAAP8AAAD/
/////wAAAP8AAAD/AAAA/wAAAP8AAAD//////wAAAP8AAAD///////////8A AAD/AAAA////////
/////////wAAAP///////////////////////////wAAAP////////////// ////////////////
//8AAAD///////////8AAAD/////////////////AAAA//////8AAAD///// //////8AAAD/////
/wAAAP////////////////////////////////8AAAD///////////////// /////wAAAP//////
//////////////////////////8AAAD///////////////////////////8A AAD/////////////
//////////////8AAAD/////////////////AAAA//////////////////// ////////AAAA////
////////AAAA/////////////////wAAAP///////////wAAAP////////// ////////////////
////////////AAAA/////////////////wAAAP////////////////////// //////////8AAAD/
////////////////AAAA//////////////////////////////////////8A AAD/////////////
////AAAA/////////////////////////////////wAAAP//////AAAA/wAA AP8AAAD/AAAA/wAA
AP8AAAD/AAAA////////////AAAA////////////AAAA/wAAAP8AAAD///// //////8AAAD/////
////////////////////////////AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/ AAAA/wAAAP8AAAD/
/////////////////////wAAAP///////////wAAAP////////////////// ////////////////
//////////////8AAAD//////wAAAP////////////////////////////// /////////////wAA
AP////////////////8AAAD/////////////////////////////////AAAA ////////////////
////////////AAAA/////////////////////////////////wAAAP////// ////////////////
AAAA////////////////////////////////////////////AAAA//////// ////AAAA////////
//////////////////////////////////////////////8AAAD///////// ////////////////
////////////////////////AAAA/////////////////wAAAP////////// ////////////////
////////////AAAA/wAAAP8AAAD/AAAA/wAAAP////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// ////////////////
//////////////////////////////////////////////////////////// /////////w==
--000e0cd573dc75759f04a177a5e8
Content-Type: text/plain; charset=us-ascii
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe: http://lists.mysql.com/mysql?unsub=gcdmg-mysql-2@m.gmane.org
--000e0cd573dc75759f04a177a5e8--
RE: mysql deal with specail character problem
am 25.04.2011 16:32:27 von Jerry Schwartz
------=_NextPart_000_0123_01CC0334.143CE6A0
Content-Type: text/plain;
charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
From: èµµç¦ [mailto:tyzhaoqi@gmail.com]=20
Sent: Thursday, April 21, 2011 9:19 PM
To: Jerry Schwartz
Cc: Johan De Meersman; sstaples@mnsi.net; mysql
Subject: Re: mysql deal with specail character problem
=20
thanks for reply!
=20
The charater set is latin1,and the key field is mangled by the email =
client.
=20
[JS When you say that the character set is latin1, do you mean that the =
database is using latin1? That would definitely cause your problem, =
because the data would be truncated at the first character that =
isnâ=99t latin1.
=20
Hereâ=99s a simple experiment: Add one row to your table, and then =
SELECT LENGTH() of your field. What comes back?
=20
Regards,
=20
Jerry Schwartz
Global Information Incorporated
195 Farmington Ave.
Farmington, CT 06032
=20
860.674.8796 / FAX: 860.674.8341
E-mail: jerry@gii.co.jp=20
Web site: www.the-infoshop.com =20
=20
=20
=20
I up load the actual character of '?????' to the attachment.
2011/4/22 Jerry Schwartz
>-----Original Message-----
>From: Johan De Meersman [mailto:vegivamp@tuxera.be]
>Sent: Thursday, April 21, 2011 9:56 AM
>To: sstaples@mnsi.net
>Cc: ??; mysql; Jerry Schwartz
>Subject: Re: mysql deal with specail character problem
>
>----- Original Message -----
>> From: "Steve Staples"
>>
>> Doesn't the '?????-1-1' mean that it's a joined key? so the 3
>
>That's what I tought, but I *can* see the characters he's typed, and =
the last
>of what you see as ? is definitely different.
>
[JS] That's because his font (or e-mail client) mangled the text, and so =
his
reply wasn't legible.
Our main office is in Japan, so I go through this all the time.
Regards,
Jerry Schwartz
Global Information Incorporated
195 Farmington Ave.
Farmington, CT 06032
860.674.8796 / FAX: 860.674.8341
E-mail: jerry@gii.co.jp
Web site: www.the-infoshop.com =20
>
>--
>Bier met grenadyn
>Is als mosterd by den wyn
>Sy die't drinkt, is eene kwezel
>Hy die't drinkt, is ras een ezel
=20
------=_NextPart_000_0123_01CC0334.143CE6A0--