
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
A node.js native client for IBM Informix.
INFORMIXDIR=/opt/informix
)INFORMIXSERVER=ol_informix1210
)PATH
to include ${INFORMIXDIR}/bin
- (e.g. export PATH="${INFORMIXDIR}/bin:${PATH}"
)LD_LIBRARY_PATH
to include ESQL/C shared libraries -
(e.g. export LD_LIBRARY_PATH="${INFORMIXDIR}/lib:${INFORMIXDIR}/lib/esql:${LD_LIBRARY_PATH}"
)You'll need to patch ${INFORMIXDIR}/bin/esql
on Debian based systems.
e.g.
$ cat esql-4.10.debian.patch | patch ${INFORMIXDIR}/bin/esql
$ npm install --save informix
var opts = {
database : 'test@ol_informix1210',
username : 'rockstar',
password : 'secret'
};
var informix = require( 'informix' )( opts );
var Informix = require( 'informix' ).Informix;
var informix = new Informix( { database : 'test@ol_informix1210' } );
informix
.query( "select tabname from systables where tabname like 'sys%auth';" )
.then( function ( cursor ) {
return cursor.fetchAll( { close : true } );
} )
.then( function ( results ) {
console.log( 'results:', results );
} )
.catch( function ( err ) {
console.log( err );
} );
var ctx = informix.createContext();
ctx.begin()
.then( function () {
return ctx.query( "insert into tcustomers( fname, lname ) values( 'John', 'Smith' );" );
} )
.then( function ( cursor ) {
console.log( 'id:', cursor.serial() );
return cursor.close();
} )
.then( function () {
return ctx.commit();
} )
.then( function () {
return ctx.end();
} )
.catch( function ( err ) {
console.log( err );
} );
JSDoc generated API documentation can be found at http://nukedzn.github.io/node-informix/docs/.
Contributions are welcome through GitHub pull requests (using fork & pull model).
FAQs
A node.js native client for IBM Informix
The npm package informix receives a total of 6 weekly downloads. As such, informix popularity was classified as not popular.
We found that informix demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.