Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

नोड जेएस mysql डेटाबेस डिस्कनेक्ट

आप नमूने का उपयोग कर सकते हैं

var dbConfig = {
        host: '----',
        user: '----',
        password: '----',
        database: '----',
        port: ----
    };

var connection;
function handleDisconnect() {
    connection = mysql.createConnection(dbConfig);  // Recreate the connection, since the old one cannot be reused.
    connection.connect( function onConnect(err) {   // The server is either down
        if (err) {                                  // or restarting (takes a while sometimes).
            console.log('error when connecting to db:', err);
            setTimeout(handleDisconnect, 10000);    // We introduce a delay before attempting to reconnect,
        }                                           // to avoid a hot loop, and to allow our node script to
    });                                             // process asynchronous requests in the meantime.
                                                    // If you're also serving http, display a 503 error.
    connection.on('error', function onError(err) {
        console.log('db error', err);
        if (err.code == 'PROTOCOL_CONNECTION_LOST') {   // Connection to the MySQL server is usually
            handleDisconnect();                         // lost due to either server restart, or a
        } else {                                        // connnection idle timeout (the wait_timeout
            throw err;                                  // server variable configures this)
        }
    });
}
handleDisconnect();



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. PHP और mySQL - को के रूप में लिखा गया है

  2. मैं mysql कार्यक्षेत्र के माध्यम से mysql डेटाबेस में डेटा कैसे आयात कर सकता हूं?

  3. SQL_NO_CACHE काम नहीं करता

  4. क्रॉन टैब का उपयोग करके MySQL डेटाबेस बैकअप कैसे लें और इसे हर रात Amazon s3 में कैसे डालें?

  5. MySQL N पंक्तियों की चलती औसत की गणना करता है