无法在 Linux 上使用 Mono 连接到 Informix 数据库

问题描述 投票:0回答:1

我正在尝试使用 Mono 访问 Informix (IDS 11.7) 数据库 在 Linux 上(Centos 5.4)

我可以使用下面的小程序访问mysql数据库,没有任何问题。 我可以毫无问题地“isql unicare”,所以看起来unixODBC没问题。

这些是我的 odbc.ini 和 odbcinst.ini 文件(使用 Adam Williams 提供的建议
Nick Gorham 位于 http://www.unixodbc.org/doc/informix.html )

/etc/odbc.ini

[MyDSN]
DRIVER=/usr/lib/libmyodbc3.so  
SERVER=localhost  
DATABASE=unicare  
UID=root  
PWD=MyWord  
PORT=

[unicare]  
Driver=Informix  
Server=unicare  
Database=unicare  
CLIENT_LOCALE=en_us.8859-1  
DB_LOCALE=en_us.8859-1  
TRANSLATIONDLL=/u/Informix11_7/lib/esql/igo4a304.so  

/etc/odbcinst.ini

##-Example driver definitinions  
##-Included in the unixODBC package  
[PostgreSQL]  
Description     = ODBC for PostgreSQL  
Driver          = /usr/lib/libodbcpsql.so  
Setup           = /usr/lib/libodbcpsqlS.so  
FileUsage       = 1  

# Driver from the MyODBC package  
# Setup from the unixODBC package  
[MySQL]  
Description     = ODBC for MySQL  
Driver          = /usr/lib/libmyodbc.so  
Setup           = /usr/lib/libodbcmyS.so  
FileUsage       = 1  


[Informix]  
Description=Informix IDS 11.7  
Driver=/u/Informix11_7/lib/cli/libifcli.so  
##Driver=/u/Informix11_7/lib/cli/iclit09b.so  
APILevel=1  
ConnectFunctions=YYY  
DriverODBCVer=03.51  
FileUsage=0  
SQLLevel=1  
smProcessPerConnect=Y  

这是在 http://mono-project.com/ODBC 上找到的示例程序, 我已经在 MySQL 数据库上成功使用了原始版本,然后 更改为此以匹配 Informix 数据库的 DSN。

“isql unicare”再次运行并读取 Informix 数据库的员工表。 如果剧本看起来很糟糕,我深表歉意,但我正在与编辑争论!

测试示例.cs

using System;
using System.Data;
using System.Data.Odbc;

 public class Test
 {
    public static void Main(string[] args)
    {
                // have an ODBC DSN setup named MYSQLDSN
                // that accesses a MySQL database via
                // MyODBC driver for ODBC with a
                // hostname of localhost and database test
       string connectionString =
          "DSN=unicare;" +
          "UID=bob;" +
          "PWD=BobWord";
       IDbConnection dbcon;
       dbcon = new OdbcConnection(connectionString);
       dbcon.Open();
       IDbCommand dbcmd = dbcon.CreateCommand();
       // requires a table to be created named employee
       // with columns firstname and lastname
       // such as,
       //        CREATE TABLE employee (
       //           firstname varchar(32),
       //           lastname varchar(32));
       string sql =
           "SELECT firstname, lastname " +
           "FROM employee";
       dbcmd.CommandText = sql;
       IDataReader reader = dbcmd.ExecuteReader();
       while(reader.Read()) {
            string FirstName = (string) reader["firstname"];
            string LastName = (string) reader["lastname"];
            Console.WriteLine("Name: " +
                FirstName + " " + LastName);
       }
       // clean up
       reader.Close();
       reader = null;
       dbcmd.Dispose();
       dbcmd = null;
       dbcon.Close();
       dbcon = null;
    }
 }

但是当我运行它时,我得到......

$ mono TestExample.exe

Unhandled Exception: System.Data.Odbc.OdbcException: ERROR [I

我应该使用 Informix 中的 odbc.ini 和 odbcinst.ini(已编辑)吗?

如果我使用看起来更常规的 odbc*ini 集,那么我会得到更详细的信息 错误消息未处理的异常:System.Data.Odbc.OdbcException: 错误 [IM002] [unixODBC][驱动程序管理器]未找到数据源名称, 并且没有指定默认驱动程序 在 System.Data.Odbc.OdbcConnection.Open () [0x00000] 中

<filename
  unknown>
:0

我怀疑我收到的这条乱码消息是这样的; 据报道 http://article.gmane.org/gmane.comp.gnome.mono.general/35093

任何想法或帮助将不胜感激。

odbc informix
1个回答
1
投票

您需要将

odbc.ini
中的“驱动程序”指向共享库文件,就像“MyDSN”条目一样。这是我使用的 - 它运行完美:

[tsdemo]
Driver=/opt/IBM/informix/lib/cli/iclit09b.so
Description=IBM INFORMIX ODBC DRIVER
Database=tsdemo
LogonID=informix
pwd=inf123
Servername=storm_tcp
© www.soinside.com 2019 - 2024. All rights reserved.