Thanks you all, I'd like to try it, but, where can I get a compiled version for windows? thanks! regards, steeven > ID: 8361 > Updated by: phanto > Reported By: [EMAIL PROTECTED] > Status: Feedback > Bug Type: COM related > Assigned To: phanto > Comments: > > could someone with a chinese charset try this please. > > Previous Comments: > --------------------------------------------------------------------------- > > [2001-01-29 17:17:27] [EMAIL PROTECTED] > this should be fixed in cvs > > please try a snapshot from http://snaps.php.net and give me feedback. > > --------------------------------------------------------------------------- > > [2000-12-21 13:52:12] [EMAIL PROTECTED] > I have setup PHP to work with ADO, but they would't work: > > $dbc = new COM("ADODB.Connection"); > $dbc->Provider = "sqloledb"; > $dbc->Open('DSN=starmate;Database=magway;UID=sa;PWD='); //OK > $q="select title from css"; > > //1. command object > $cm= new COM("ADODB.Command"); > $cm->CommandText=$q; > $cm->ActiveConnection=$dbc; //PropPut() failed!!! > $rs=$cm->Execute(); //Invoke() failed!!! > // > > //2. recordset still don't work > $rs=new COM("ADODB.Recordset"); > $rs->Open($q); //Invoke() failed!!! > > //only this code will work > $rs=$dbc->Execute($q); > echo $rs->fields[0]->value . "<br>"; > > > On the other hand, all the Double byte char input/output will be cut to 1byte. ²âÊÔa >will be changed to 3 byte char. > Test with ADODB,Word, It seemed that windows report chinese as one char, but php >think it one byte. > > > --------------------------------------------------------------------------- > > > > ATTENTION! Do NOT reply to this email! > To reply, use the web interface found at http://bugs.php.net/?id=8361&edit=2