This is a follow on to my original question
I am trying to set up IBM's Informix driver for use with NodeJS on MacOS.
After viewing the Readme file for the Informix NPM library, I am a little confused as to what the environment variables are and whether I need to apply them all?
I managed to track down the install location for the SDK files: Applications/IBM/informix
and then added this to the ~/.bash_profile
file as so:
export INFORMIXDIR=/Applications/IBM/informix
export PATH=$PATH:$INFORMIDIR
Should I change my PATH
to include /bin
at the end?
I am also confused by the remainder of the statements in the Readme. I was expecting to set the server name and host dynamically rather than hard-coding them?
Some guidance would be appreciated.