oracle-orm
Because the other options are worse.
There's only one other ORM for Node.js that supports Oracle. It says a lot about the cultures of both Node and Oracle.
The other ORM has over a year of open issues on Github, it sometimes generates invalid Oracle SQL statements and does absurd things like creating a table PEOPLE
for a model named PERSON
(and PEOPLES
for PEOPLE
, ha). I don't like ORMs, I'm forced to use one for a project. I don't want my tools to do unexpected things in the database and that other ORM is full of surprises.
Oracle-ORM is safe against SQL injections.
This ORM only supports the features I need. It doesn't support connection pooling, error recovery and all sorts of basic things you'd expect from an ORM. If you want those features added, open an issue or send a pull request.
Install
Don't install from npm yet!
First, make sure libaio is installed: sudo apt-get install libaio1
or sudo yum install libaio
Then, go to the Oracle driver page and select your architecture. Download instantclient-basic-linux.x64-12.1.***.zip
and instantclient-sdk-linux.x64-12.1.***.zip
.
Unzip both into YOUR_PROJECT/instantclient_12_1
. It won't work if the driver can't be found.
Run npm install oracle-orm
in your project's directory. It'll prompt for sudo because the Oracle driver needs environment variables.
Finally, run source /etc/environment
(or just logout and log back in). All done!
Run the tests
Put the database credentials in node_modules/oracle-orm/testDB.json
and run npm test oracle-orm
.
Usage
var ORM = require("oracle-orm");
var oracleConnectData = {
driver: "oracle"
hostname: "hostname or IP"
port: 1521
database: "database name (SID)"
user: "username"
password: "password123"
};
var debug = true;
new ORM(oracleConnectData, debug, function(err, orm){
orm.getModels(function(err, models){
});
});
Due to the very callback-heavy nature of SQL, it's recommended to use a tool to deal with that. Promises, Generators, Streamline, Q, Async, etc. are all good options.
Documentation
Oracle-ORM works by building one Model object per table in the database. Operations on that Model affect the whole table. Operations GET and ALL on a Model return new copies of Units. A Unit maps to a database row. There can be more than one Unit per row. Operations on a Unit only affect that row.
ORM
Getting the Models
orm.getModels(function(err, models){
});
Running arbitrary SQL
orm.execute(sql, paramsArray, function(err, results){ ... });
Model
In these examples, USER is a Model.
The USER.columns object contains information about the field types.
add
USER.add({"USER_ID":5, "NAME":"JOE SMITH"}, function(err, results){ ... });
get
USER.get({"USER_ID":">5", "USER_ID":"<20"}, [], function(err, results){ ... });
USER.get({}, ["USER_ID ASC", "NAME DESC"], function(err, results){ ... });
all
USER.all(function(err, results){ ... });
update
USER.update({"NAME":"BOB SMITH"}, {"NAME":"='JOE SMITH'", "USER_ID":">10"}, function(err, results){ ... });
del
USER.del({"USER_ID":"<5"}, function(err, results){ ... });
count
USER.count(function(err, results){ ... });
empty
USER.empty(function(err, results){ ... });
Unit
data
user.data contains the fields and values of a Unit.
isDirty
Returns true if the object was modified
save
Writes the dirty (modified) fields to the database.
sync
Refreshes all fields with fresh values from the database.
reset
Brings all fields back to the state they were in when the Unit was created or after the last sync if sync was called at some point.
Examples
In these examples, user55 is a Unit. Suppose they are executed sequentially.
user55.isDirty();
user55.data.NAME = "WILLIAM CAMPBELL";
user55.isDirty();
user55.save(function(err, results){ ... });
user55.isDirty();
console.log(user55.data.NAME);
user55.data.NAME = "JAMES SMITH";
user55.isDirty();
console.log(user55.data.NAME);
user55.sync(function(err, results){ ... });
console.log(user55.data.NAME);
user55.isDirty();
user55.data.NAME = "JAMES SMITH";
user55.isDirty();
console.log(user55.data.NAME);
user55.reset(function(err, results){ ... });
console.log(user55.data.NAME);
user55.isDirty();
user55.del(function(err, results){ ... });
user55.del(function(err, results){ ... });