Answers for "connect sequelize to mysql"

0

Connect Sequelize to Database

const db = new Sequelize('postgres://localhost:3000/yourDatabaseNameHere')
                          //^ Our protocol   ^Path to DB     ^Database name
Posted by: Guest on December-11-2021
-1

new Sequelize('featherstutorial', 'databaseUser', 'databasePassword'

var sequelize = new Sequelize('mysql://user:[email protected]:9821/dbname', {
  // Look to the next section for possible options
})
Posted by: Guest on October-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language