Sequelize node.js/io.js ORM for Postgresql,mysql,sqlite and MSSQL

Source: Internet
Author: User
Tags mssql postgresql sqlite

installation

Sequelize can be obtained from NPM.

$ npm Install----save pg pg-// for both MySQL and mariadb dialects$ npm Install--
   
    // 
     MSSQL
   
Establish a connection

Sequelize will set up a connection pool at initialization time, so ideally only one instance should be created for each database.

var New Sequelize (' database ', ' username ', ' password ', {  ' localhost  ', ' MySQL ' | ' Mariadb ' | ' SQLite ' | ' Postgres ' | ' MSSQL ',  pool: {    5,    0,    10000  },  //  SQLiteonly  storage: ' Path/to/database.sqlite '}); // Or You can simply use a connection URI var New Sequelize (' Postgres://user:[email protected]:5432/dbname ');
your first model.

model Use sequelize.define(‘name‘, {attributes}, {options}) .

varuser = Sequelize.define (' user ', {firstName: {type:Sequelize.STRING, field:' First_Name '//Would result in a attribute that's firstName when user facing and First_Name in the database}, LastName: {Type:Sequelize.STRING}}, {freezetablename:true //model TableName would be the same as the model name}); User.sync ({force:true}). Then (function () {  //Table created  returnuser.create ({firstName:' John ', LastName:' Hancock '  });});

Reference link: https://sequelize.readthedocs.io/en/v3/docs/getting-started/#setting-up-a-connection

Sequelize node.js/io.js ORM for Postgresql,mysql,sqlite and MSSQL

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.