I faced the same issue once, that eats my plenty of hours.Finally i found my database was migrated not completely.Database tables count was matched in local and demo server.Because of constraints error part of database was not imported.
SET FOREIGN_KEY_CHECKS=0; // top of your exported sql file
//Your database queries
SET FOREIGN_KEY_CHECKS=1; // bottom of your exported sql file
Magento community wiki has article about migrating Magento server to server
You can check your database connection by core php mysql connection.create connection file as db.php in root directory and add bellow code with your db configuration and execute this file to check connection exists or not.
example :-
$conn = mysql_connect("Your_Host","User_Name","Password");
if(mysql_select_db("Your_DB_name",$conn)) echo "yes"; else echo "no";
This may be help you.
/app/etc/folder (Magento reads all *.xml files it can find and merges them). – Jürgen Thelen Jan 25 '12 at 18:10