Connecting to external SQL Server with a plugin
-
Hello! I’m trying to connect to a separate SQL Server Database from within my plugin (the data is already in that database) so I am trying to do so this way:
$dbh= mssql_connect($host, $user, $password) or die ('I cannot connect to the database because: ' . mssql_get_last_message()); mssql_select_db($database) or die ('I cannot connect to the table because: ' . mssql_get_last_message());
However, I’m getting an unable to connect error. When I run the same code outside of a wordpress plugin in the wordpress directory, I connect fine and can display the data.
Does WordPress have some option I need to enable to connect to a different database not using $wpdb? Is it blocked completely?
Thanks!
Joe
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Connecting to external SQL Server with a plugin’ is closed to new replies.