sequelize 用于PostgreSQL,MySQL,SQLite和MSSQL的Node.js / io.js ORM

Posted 开始战斗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sequelize 用于PostgreSQL,MySQL,SQLite和MSSQL的Node.js / io.js ORM相关的知识,希望对你有一定的参考价值。

安装

Sequelize可通过NPM获得。

$ npm install --save sequelize

# And one of the following:
$ npm install --save pg pg-hstore
$ npm install --save mysql // For both mysql and mariadb dialects
$ npm install --save sqlite3
$ npm install --save tedious // MSSQL

建立连接

Sequelize将在初始化时设置一个连接池,因此理想情况下只应为每个数据库创建一个实例。

var sequelize = new Sequelize(‘database‘, ‘username‘, ‘password‘, {
  host: ‘localhost‘,
  dialect: ‘mysql‘|‘mariadb‘|‘sqlite‘|‘postgres‘|‘mssql‘,

  pool: {
    max: 5,
    min: 0,
    idle: 10000
  },

  // SQLite only
  storage: ‘path/to/database.sqlite‘
});

// Or you can simply use a connection uri
var sequelize = new Sequelize(‘postgres://user:[email protected]:5432/dbname‘);

你的第一个模型

模型使用sequelize.define(‘name‘, {attributes}, {options})

var User = sequelize.define(‘user‘, {
  firstName: {
    type: Sequelize.STRING,
    field: ‘first_name‘ // Will result in an attribute that is firstName when user facing but first_name in the database
  },
  lastName: {
    type: Sequelize.STRING
  }
}, {
  freezeTableName: true // Model tableName will be the same as the model name
});

User.sync({force: true}).then(function () {
  // Table created
  return User.create({
    firstName: ‘John‘,
    lastName: ‘Hancock‘
  });
});

 

参考链接:https://sequelize.readthedocs.io/en/v3/docs/getting-started/#setting-up-a-connection

以上是关于sequelize 用于PostgreSQL,MySQL,SQLite和MSSQL的Node.js / io.js ORM的主要内容,如果未能解决你的问题,请参考以下文章

Sequelize:在 PostgreSQL 的 JSON 数据类型上使用 $like

使用 Node.js/Sequelize 进行批量插入时 PostgreSQL 崩溃

sequelize(和 sequelize-cli)queryInterface.createTable 在 PostgreSQL 上,PK id 类型为 UUID 和 defaultValue:Se

使用 PostgreSQL 进行一对多设计的 Sequelize.js 最佳实践 [关闭]

将数据库替换为 postgreSQL 后,Sequelize 时间比较失败

ruby sequel 和 postgreSQL - 客户端太多(连接)