データベース管理のために MySQL を Node.js に接続する
PHP から移行する Node.js の初心者として、統合方法を疑問に思うかもしれません。 MySQL と Node.js アプリケーション。このタスクを容易にするために、複数の Node.js モジュールが用意されています。
推奨モジュール:
さまざまなモジュールが、Node.js ユーザーに効果的な MySQL 統合を提供します。注目すべきオプションには次のものがあります。
に基づく非同期 MySQL バインディングを提供します。 node-mysql:
node-mysql を使用した MySQL と Node.js の統合は比較的簡単です。コード スニペットの例を次に示します。
// Import the node-mysql module const mysql = require('mysql'); // Establish a connection to the MySQL database const connection = mysql.createConnection({ host: 'example.org', user: 'bob', password: 'secret', }); // Connect to the database connection.connect((err) => { if (err) throw err; console.log("Connected!"); }); // Execute a query const query = connection.query('INSERT INTO posts SET ?', { id: 1, title: 'Hello MySQL' }, (err, result) => { if (err) throw err; console.log("Inserted successfully."); console.log(query.sql); });
このコード スニペットは、データベースへの接続、接続の確立、クエリの実行、結果のログ記録のプロセスを示しています。これらのパラメータは、データベース構成と特定の使用例に基づいてカスタマイズできます。
以上がMySQL を Node.js アプリケーションに接続するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。