Installing sequelize
npm install --save sequelize
You can also install MySQL. to use this command
npm install --save mysql2
Connecting to the database
javaScript const {Sequelize} =require('sequlize');
const sequelize =new Sequelize('database','username','password',{
host:'localhost',
dialect;
});
Testing the connection
javaScript try{
await sequlize.authenticate();
console.log('Connection success');
}catch(err){
console.error('Unable to connect to the database',err);
}
Models are reprent's table from the database
const Sequelize=require('sequelize'); const sequelize=require('../util/db.js'); //database connection locations const User=sequelize.define( 'User', //table name { id:{ type:Sequlize.INTEGER, autoIncrement:true, primaryKey:true }, name:{ type:Sequelize.STRING, allowNull: false, }, email:{ type:Sequelize.STRING, allowNull:false, unique:true } } module.exports=User;
以上がSQL シークェライズ ||ムニセカール・ウダヴァラパティ著 || MySQL || SQLの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。