PHP/Linux to AS/400-db2

后端 未结 4 1279
轮回少年
轮回少年 2020-12-09 22:41

I am trying to get php on Linux Centos server access as/400 (iSeries) db2 database.

I am using this IBM guide as much as possible, (though we could not get GUI confi

4条回答
  •  孤街浪徒
    2020-12-09 23:20

    Try double checking your odbcinst.ini and odbc.ini config files. Do you have the correct database name/default library set in odbc.ini? I had success following these instructions:

    http://werk.feub.net/2010/11/ingredients-php-db2-and-unixodbc/

    One difference is that I found a version of openmotif that included libXm.so.3.

    http://rpm.pbone.net/index.php3/stat/3/limit/2/srodzaj/1/dl/40/search/libXm.so.3/field[]/1/field[]/2

    Restart apache after installing php-odbc.

    /etc/odbc.ini

    [ISERIES]
    Description = iSeries Access ODBC Driver DSN for iSeries
    Driver = iSeries Access ODBC Driver
    System = 192.168.1.1
    UserID = MYUSER
    Password = MYPASSWORD
    Naming = 0
    DefaultLibraries = QGPL
    Database =
    ConnectionType = 0
    CommitMode = 2
    ExtendedDynamic = 0
    DefaultPkgLibrary = QGPL
    DefaultPackage = A/DEFAULT(IBM),2,0,1,0,512
    AllowDataCompression = 1
    LibraryView = 0
    AllowUnsupportedChar = 0
    ForceTranslation = 0
    Trace = 0
    

    Sample PHP:

    
    

提交回复
热议问题