sbi-sequelize-oracle is a multi-dialect ORM for Node.js (forked from rmos/sbi-sequelize-oracle) with a focus on Oracle database support, though it also supports MySQL, SQLite, PostgreSQL, and MSSQL. This version (1.1.3) targets Node.js >=0.6.21 and is based on an early fork of Sequelize. It is no longer actively maintained; the main Sequelize project has advanced significantly with better Oracle support and broader compatibility. Use this only for legacy projects. Release cadence is low; no updates since the fork. Key differentiator: Oracle-specific patches not in original Sequelize at the time.
npm install sbi-sequelize-oracleNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Connects to Oracle, defines a User model, syncs schema, and inserts a record.
Migrate to sequelize@6+ with oracle driver.
Install oracle package: npm install oracle.
Use import destructuring: import { DataTypes } from 'sbi-sequelize-oracle'.Run: npm install oracle
Use 'const Sequelize = require('sbi-sequelize-oracle')' without destructuring.