we have a project with Node.js that use the ibm_db to connect to the DB2/AS400.
The problem is that it returns the following error:
[SERVER] { Error: [IBM][CLI Driver] SQL1598N An attempt to connect to the database server failed because of a licensing problem. SQLSTATE=42968
[SERVER]
[SERVER] errors: [],
[SERVER] error: '[node-odbc] SQL_ERROR',
[SERVER] message: '[IBM][CLI Driver] SQL1598N An attempt to connect to the database server failed because of a licensing problem. SQLSTATE=42968\r\n',
[SERVER] state: '42968' }
there Is an alternative way to connect to AS400, from node, js that does not require a license?
This is the code we use for the connection:
"use strict";
var models = require("../../models/index");
var express = require("express");
var db2Route = express.Router();
const ibmdb = require("ibm_db");
//import ibm_db
const opts = [
'DRIVER={IBM DB2 CLI DRIVER}',
'DATABASE=*****',
'PROTOCOL=TCPIP',
'HOSTNAME=*****',
'PORT=446',
'UID=*****',
'PWD=*****',
'DBQ=,*USRLIBL'
];
db2Route.route("/").post((req, res) => {
ibmdb.open(opts.join(';'), (err, conn) => {
if (err) return console.log(err);
conn.query("Select * from TBFR0F" ,(err, data) =>{
if (err) console.log(err);
else console.log(data);
conn.close(() => console.log('done'));
});
});
});