Socket
Socket
Sign inDemoInstall

sequelize-oracle

Package Overview
Dependencies
12
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    sequelize-oracle

Multi dialect ORM for Node.JS/io.js


Version published
Weekly downloads
99
decreased by-51.94%
Maintainers
1
Install size
8.85 MB
Created
Weekly downloads
 

Readme

Source

Sequelize-oracle

Bitdeli Badge Build Status Dependency Status Code Climate Test Coverage

Sequelize is a promise-based Node.js/io.js ORM for Postgres, MySQL, MariaDB, SQLite, Microsoft SQL Server and Oracle. It features solid transaction support, relations, read replication and more.

Note

sequelize-oracle is a fork of sequelize@master
This fork add support of DML statements for Oracle
If you don't need Oracle support, prefer the original Sequelize

Sequelize-oracle@3.0.1-x.x is in development. Only the old version (1.7.10-x.x) is on npmjs registry.

Compatibility:

Sequelize-oracle is compatible only with nodejs@0.10 and nodejs@0.12 (with oracledb >= 0.6).
Sequelize-oracle is only tested with Oracle 11 XE and nodejs@0.10

Installation

The basic install steps are:

  • Install oracledb

    • Install the small, free Oracle Instant Client libraries if your database is remote, or have a local database such as the free Oracle XE release.
    • Run npm install oracledb to install from the NPM registry.

    See INSTALL for details.

  • Install sequelize-oracle

    • Run npm install sequelize-oracle to install from the NPM registry.

Oracledb config in Sequelize-Oracle

  • With Oracledb, the maximum number of rows that are fetched by select query is 100 rows. You can change this parameter with options.maxRows in each query.
  • In Sequelize, for Raw query, the outFormat parameter for oracledb is OBJECT.
  • AutoCommit is enable by default. If you don't want autoCommit, use Sequelize Transactions for manage commit et rollback.

Limitations:

  • 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))
  • Index: index type is not fully managed

Todo:

  • ENUM DataType

  • improve index for type

  • resolve the pb "name column length > 30 char" in nesteed querry

  • ...

Sequelize

Build Status Dependency Status Test Coverage Bountysource Flattr this

Sequelize is a promise-based Node.js/io.js ORM for Postgres, MySQL, MariaDB, SQLite and Microsoft SQL Server. It features solid transaction support, relations, read replication and more.

Documentation

Installation

npm install sequelize

From 3.0.0 and up Sequelize will follow SEMVER. 3.0.0 contains important security fixes so we highly recommend that users upgrade.

If you still use 1.7 please prefer to Upgrading to 2.0 and the changelog between 2.0 and 3.0. 2.1 also has a breaking change.

Features

  • Schema definition
  • Schema synchronization/dropping
  • 1:1, 1:M & N:M Associations
  • Through models
  • Promises
  • Hooks/callbacks/lifecycle events
  • Prefetching/association including
  • Transactions
  • Migrations
  • CLI (sequelize-cli)

Resources

Keywords

FAQs

Last updated on 25 Jun 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc