-
MySQLデータベースサーバーのインストールとセットアップ:
- MySQLデータベースサーバーをインストールします。
- インストール後、適切な設定を行ってデータベースサーバーをセットアップします。
-
Node.jsプロジェクトのセットアップ:
- Node.jsプロジェクトを作成し、必要な依存関係をインストールします。
-
MySQLモジュールのインストール:
-
Node.jsでMySQLデータベースを操作するために、mysqlパッケージをインストールします。以下のコマンドを使用してインストールします。
npm install mysql
-
-
データベースへの接続:
-
MySQLデータベースに接続するための接続情報を設定します。以下は接続情報の例です。
const mysql = require('mysql'); const connection = mysql.createConnection({ host: 'localhost', user: 'your_username', password: 'your_password', database: 'your_database_name' }); connection.connect((err) => { if (err) throw err; console.log('Connected to the MySQL database.'); });
-
-
テーブルの作成:
-
データベース内にテーブルを作成するためのクエリを作成します。以下は例です。
const createTableQuery = `CREATE TABLE users ( id INT PRIMARY KEY AUTO_INCREMENT, name VARCHAR(255), email VARCHAR(255) )`; connection.query(createTableQuery, (err, result) => { if (err) throw err; console.log('Table "users" created successfully.'); });
-
-
データの挿入:
-
テーブルにデータを挿入するためのクエリを作成します。以下は例です。
const insertDataQuery = `INSERT INTO users (name, email) VALUES ('John Doe', '[email protected]')`; connection.query(insertDataQuery, (err, result) => { if (err) throw err; console.log('Data inserted successfully.'); });
-
これらの手順を実行することで、Node.jsでMySQLデータベースを作成し、データを操作することができます。適切なエラーハンドリングを行いながら、これらのコード例をカスタマイズしてプロジェクトに組み込んでください。