I want to be able to use nodejs to connect to Oracle 11g database. I have only seen connectivity with 9i, though would like to know how to be able to use it under a Windows environment.
Module oracle is the most updated and feature rich Oracle driver in npm. It supports 11g version as well.
install required tools
add the oracle driver to system environment path:
OCI_LIB_DIR=C:\oracle\product\11.2.0\dbhome_1\oci\lib\msvc OCI_INC_DIR=C:\oracle\product\11.2.0\dbhome_1\oci\include
npm install oracledb
Then you can connect oracle with nodejs.
My OS is Win8 64bit.
AFAIK and this page says, it's possible: http://rockycode.com/blog/connect-nodejs-oracle-say-what/