Giter VIP home page Giter VIP logo

cu8-sequelize-oracle's Introduction

Cu8-sequelize-oracle

New Feature - CLOB auto loading

Hey! I'm Nhua Nhua, who came from Mars. Wish you have a nice day and feel comfortable with fucking Oracle DB and NodeJs.

Note:

  • Fix old functions and add more features to sequelize-oracle
  • Forked repository: Sequelize-oracle

Change logs

  • 0.0.4 Add destroy function for deleting objects

       model
           .destroy({where: {ID: 123}})
           .then()
           .catch();
  • 0.0.5 Add $regexp_like comparator. $regexp_like: 'string'

  • 0.0.6 Add TEXT (CLOB) type

  • 0.0.7 Add Sequelize.insertCLOB, Sequelize.updateCLOB

    • Sequelize.prototype.updateCLOB = function(model, data, search, ClobFields, done)
    Sequelize.updateCLOB(model, req.body, {ID: req.body.ID}, ['Field1_type_clob', 'Field2_type_clob'], function (err) {
      if (err)
        return next(err);
      res.sendStatus(200);
    });
    • Sequelize.prototype.insertCLOB = function(model, data, primaryKey, ClobFields, done)
    Sequelize
      .insertCLOB(model, req.body, 'ID', ['Field1_type_clob', 'Field2_type_clob'], function (err, result) {
          res.send(result);
        });
  • 1.0.0

    • Connection pool (Setup in ./lib/dialects/abstract/connection-manager.js at line 79) :
          connectionConfig.poolMax = 20;
          connectionConfig.poolMin = 0;
          connectionConfig.poolTimeout = 69;
          connectionConfig.queueRequests = true;
  • 1.0.5 Fix join model cannot load CLOB

DataType: only this dataTypes are managed:

STRING (=VARCHAR2)
CHAR
DECIMAL (=NUMBER)
BIGINT (=NUMBER(19,0))
INTEGER
FLOAT
DOUBLE
UUID (=CHAR 36)
DATE (=TIMESTAMP WITH LOCAL TIME ZONE)
DATEONLY (=DATETIME)
BOOLEAN (=NUMBER(1))
TEXT (=CLOB)

cu8-sequelize-oracle's People

Contributors

nhuanhoangduc avatar ravisr avatar vagabondan avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.