Tagged Questions
1
vote
1answer
129 views
IBM .net driver cannot find db2locale.dll
I'm trying to pull a Git repository of my .net solution over to another folder on the same machine (just to make sure it works).
In the project I use that creates IfxConnections, when I try to create ...
1
vote
2answers
129 views
IBM DB2 Data Provider - How do I change the username and password at runtime?
When I create a Designer-generated DataSet in Visual Studio, using the DB2 data provider, I am asked a question as to whether I want to store sensitive information in my ConnectionString object.
As ...
2
votes
1answer
622 views
Informix .NET Connection String
I am attempting to connect to an Informix DB server (v10) and I am using the Informix Data Provider .NET class library to establish a connection via a .NET application and retrieve data.
Initially I ...
2
votes
0answers
489 views
Assembly load error for 64 bit .NET Informix ADO.NET provider
I am running 64 bit Windows 7. I have a .NET 4.0 web project and a Class Library Project that accesses an Informix database. I installed the IBM Informix Client SDK version 3.70.FC4 (64 bit version, ...
2
votes
1answer
231 views
How to escape colon (:) character while executing native SQL queries against an Informix database using NHibernate?
I'm trying to execute a set of native SQL queries against an Informix database, using NHibernate to create the queries. However, NHibernate is set to change the query if it contains colons (they are ...
1
vote
1answer
167 views
How do I find which client_locale corresponds best to my Windows language setting?
Apologies, my question may be incorrect, but CLIENT_LOCALE seems like the current most-likely culprit:
I've created a unicode database on my Informix server. We're pretty sure (but frankly, not ...
1
vote
1answer
139 views
If I use an nchar column, how can I store Czech text in an IBM819 database?
I asked a question yesterday, about switching our database over to UTF-8 (multi-byte char, unicode) encoding from IBM819 (single-byte char, Latin1 subset), because of a new requirement to support text ...
1
vote
0answers
48 views
COM class factory Error in WCF Service
I have a problem with COM object: I have a service which connect to database.
All connection's information service read from connection.config file.
But I have a error when service trying to connect ...
6
votes
1answer
192 views
Parameterized query fails when inserting certain Unicode characters
I have a problem when trying to insert certain characters through query with parameters.
When I run the following query (no parameters involved), everything works fine.
string insertQuery = "insert ...
1
vote
1answer
394 views
C# Triple DES encryption to decrypt Informix ENCRYPT_TDES function
I have data from an Informix database that has a column with data encrypted using the Informix function ENCRYPT_TDES. The data was imported into SQL SERVER 2008 and I no longer have access to a ...
1
vote
1answer
185 views
SQL SERVER 2008 version of Informix ENCRYPT_TDES
We have an application that was using the informix ENCRYPT_TDES function. I found that SQL SERVER has a function called ENCRYPTBYPASSPHRASE which also uses TDES. However, the results are very ...
1
vote
1answer
60 views
ibm.data.informix is not getting the correct data out of the database
Server: IBM Informix Dynamic Server Version 11.70.FC1GE
Client: IBM Data Server Driver package 5765-F41
Dotnet Client DLL:
IBM.Data.Informix.dll
...
1
vote
1answer
316 views
Best/Correct way to call an Informix stored procedure via ADO.Net Command?
I have an Informix database which exposes some stored procedures, I have an abstracted data accessor that handles communicating with them but I have a problem with a null value.
Directly you can ...
1
vote
1answer
618 views
Error connecting to Informix using .NET driver
I have a problem connecting to Informix server(windows) using ADO.NET. I'm using Listing 1 code from this article:
http://www.ibm.com/developerworks/data/library/techarticle/dm-0510durity/
Reported ...
1
vote
2answers
151 views
ODBC Call Syntax for multiple return values
So first off, sorry for the length of the question...
So basically I'm having issues calling a stored proc from an Informix database where the stored proc has multiple return value, while using ODBC ...
1
vote
1answer
361 views
Informix can't connect via IBM.Data.Informix
I'm trying to connect to Informix database using sample code from https://www.ibm.com/developerworks/data/library/techarticle/dm-0510durity/
I'm using IBM.Data.Informix.dll version 9.7.4.4
I get an ...
1
vote
3answers
145 views
How best to reduce primary key value?
I am developing an application (.Net) that supports Oracle, Sql Server and Informix as the data repositories. A problem with Informix is that one table (this is legacy stuff) has a primary key of 2048 ...
2
votes
1answer
747 views
Informix (C#): How do I properly set/unset a blob field?
IBM Informix SDK:
Statement: Update mytable set myblobcolumn = ? where myid = 1;
using (IfxConnection conn = GetIfxConnection())
using (IfxCommand cmd = new IfxCommand(updateSql, conn))
{
var ...
1
vote
1answer
236 views
Cannot call stored procedure from code which works on direct call to database
I connected to the Informix server using RazorSQL, created a stored procedure and tested it, getting the expected answer, so the procedure exists in the database in some form.
I then run the ...
1
vote
1answer
228 views
about parameterized query
Q:
Please , i want to ask ,how to perform a query(select statement) using a parametrized query in Informix database ,with a simple example.
thanks in advance.
EDIT:
i use
IfxConnection and ...
1
vote
1answer
846 views
Unable to load DLL 'iclit09b.dll'
After I have setup the Informix server and the Informix client, I face the following problem when trying to run my ASP.NET application:
unable to load DLL 'iclit09b.dll': The specified procedure ...
1
vote
1answer
135 views
Why can't I update TEXT type columns in Informix
I face the following problem. I have some fields in my Informix database. I decided to change these fields to TEXT type (BLOB) to allow large text. The problem is: when inserting new values, it works ...
2
votes
2answers
883 views
Change/Create ODBC connection from code
I'm working against a Informix DB from C# ASP .Net 4.0 via an ODBC connection. This database does change frequently so I read out what DBs that are installed from the sysmaster table.
Depending on ...
2
votes
2answers
3k views
Connecting to Informix using .NET
Server Information
Sun Microsystems Inc. SunOS 5.8 Generic Patch October 2001
Server: Informix Dynamic Server Version 7.31.UD3
Information:
Link: ...
1
vote
1answer
4k views
How do I connect to Informix with .NET?
Background Information:
Visual Studio 2010 (.NET Framework 4.0)
Informix Server 7.31
Informix ClientSDK 3.50 TC7 (Windows 32-bit) was installed as well.
I have tried multiple ways suggested online ...
2
votes
1answer
381 views
Sync tables between different database providers
I have 2 tables in 2 different databases, one is in a mysql server and one is in an informix server.
Using .net and odbc, is there a way to identify the differences of both tables and merge them?
so ...
1
vote
3answers
135 views
Migrating Data to SQL Server 2008
I am trying to migrate data from an Informix database to SQL Server 2008. I've got quite a lot of data to move. I've been try multiple methods to get the data over, and so far SQLBulkCopy in multiple ...
3
votes
2answers
874 views
Can IfxConnection and threading get along?
We have an application using the IBM Informix driver. Whenever we try to open connections in parallel, we start getting some really weird errors.
This is the smallest reproduction code I could come ...
1
vote
2answers
652 views
ODBC Support for Informix Serial and BigInt Data Types
I have Informix Dynamic Server 11.50 and Informix Client SDK 3.5 installed on my server. I am developing a .NET application to read data from Informix database using ODBC functions.
In the database, ...
1
vote
2answers
658 views
Calling multiple stored procedures in .net, how to do it?
I need to call a stored procedure multiple times, I'm using informix. I would like to know if calling a procedure multiple times with the same connection is the same generating the string with the ...
2
votes
5answers
1k views
How to call a stored procedure without waiting for it to finish?
How do I call a stored procedure from a web service method without having to wait for the stored procedure to finish, and just let the method finish all other activities?
As an example (not actual ...
1
vote
2answers
534 views
Informix ODBC Connection Help
I have a development project that requires us to be able to support informix data sources via ODBC. I've downloaded the prebuilt Informix Virtual Appliance from the IBM website and am able see the ...
2
votes
4answers
4k views
Connecting to Informix database from .Net
What's the best way to connect to a Informix database from .Net?
I'm developing a client-server application based on a legacy Informix DB which used to be connected by JDBC.
I need it, from the most ...