我用Flash Builder 4 做了一个简单的读取数据库的测试,用的PHP类型,绑定一个表后,用DateGrid读取,结果显示出来的汉字都是问号,想象肯定是编码问题。
MySQL是UTF8,PHP也是UTF8,我用PHP程序写入和读取均正常
经过我上网查找各种资料后才知道具体原因,现在分享给大家:
原来是在自动生成的那个server.php里,连接数据库时指定一下编码格式,如下:
public function __construct()
{
$this->connection = mysqli_connect(
$this->server,
$this->username,
$this->password,
$this->databasename,
$this->port
);
$this->throwExceptionOnError($this->connection);
//新增代码
$this->connection->set_charset('utf8');
或可以使用:
$this->conn->query('set NAMES "utf-8"');
文档下载 http://www.gxziliao.com