21278 Posts in 5728 Topics by 2599 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1030 Views |
-
problem with external database connection

15 January 2009 at 9:16pm
Hi!
I need to connect silverstripe to external database. I read forum and I found somethig useful about connection here: http://silverstripe.org/archive/show/120 but I can't connect to my database.So I wrote:
class Page extends SiteTree {
function db_external_connection() {
$db = new MySQLDatabase(array(
"server" => "pandora",
"ip" => "127.0.0.1"
"username" => "admin",
"password" => "mm",
"database" => "ville_free",
"type" => "mysql",
));
$query = $db->query("SELECT * FROM mm_service");
Debug::show($row);
}
}and in Page.ss
$db_external_connection
| 1030 Views | ||
|
Page:
1
|
Go to Top |

