anatak Posted October 15, 2006 Share Posted October 15, 2006 I am trying to change to ADOdb connections and I have most things workingbut I have one problemin my old way of connecting I used this method[code]function read_connection(){//guest connection (read only)$GLOBALS["ReadConnection"] = mysql_connect($GLOBALS["Host"], $GLOBALS["SelectUser"], $GLOBALS["SelectPassword"]);if (!$GLOBALS["SelectPassword"]) die ("Could not connect MySQL guestconnection: " . mysql_errno() . " : " . mysql_error());//database selecteren en connectie openenmysql_select_db($GLOBALS["Database"],$GLOBALS["ReadConnection"]) or die ("Could not open database guestconnection: " . mysql_errno() . " : " . mysql_error());mysql_query("SET NAMES 'utf8'");}[/code]IN the ADOdb way I use this[code]$dbread = &ADONewConnection('mysql');$dbread->Connect($Host, $SelectUser, $SelectPassword, $Database); $dbread->debug = $debug; [/code]How can I define the mysql_query("SET NAMES 'utf8'");in the ADOdb connection ?thank youanatak Link to comment https://forums.phpfreaks.com/topic/23983-changing-to-adodb-connections/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.