如何在adodb中使用以下代码?
在哪里放“'CharacterSet','UTF-8'”?
protected $ connectionParameters = array();
/**
* Adds a parameter to the connection string.
*
* These parameters are added to the connection string when connecting,
* if the driver is coded to use it.
*
* @param string $parameter The name of the parameter to set
* @param string $value The value of the parameter
*
* @return null
*
* @example, for mssqlnative driver ('CharacterSet','UTF-8')
*/
final public function setConnectionParameter($parameter,$value)
{
$this->connectionParameters[$parameter] = $value;
}
答案 0 :(得分:0)
在创建ADOdb对象之后但在连接到数据库之前设置它。
$db = newADOConnection('mssqlnative');
$db->setConnectionParameter('ChearaterSet','UTF8');
$db->connect($host,$user,$password,$database);
答案 1 :(得分:0)
'CharacterSet' 不适用于 mysqli。
正确的一个:
$db->setConnectionParameter(MYSQLI_SET_CHARSET_NAME, 'utf8');