-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
Description
Datatype BYTE returns exception too.
node ixtest.js
Error: [-450] Illegal ESQL locator, or uninitialized blob variable in 4GL.
at Error (native)
var opts = {
database : 'filmy@ixlur',
username : 'informix',
password : '***'
};
var informix = require( 'informix' )( opts );
informix
.query( "select ffoto from filmy where fid=1" )
.then( function ( cursor )
{
return cursor.fetchAll();
} )
.then( function ( results )
{
console.log('Yes');
})
.catch( function ( err )
{
console.log( err );
} );