0
votes
2answers
53 views

How to send double byte char to DB2 from .net provider?

I get a conversion error from the ibm iseries .net provider when calling a rpg/db2 stored procedure passing a param that contains a double byte char. The same procedure if I pass it normal text.
1
vote
0answers
78 views

Application using DB2 not launching due to Win 8 [closed]

My application uses DB2. It is working fine in Win 7, but not launching in Win 8. Giving error "System.Configuration.ConfigurationErrorsException: Failed to find or load the registered .Net ...
0
votes
2answers
91 views

Getting a conversion error when calling a Db2 stored procedure in as400 rgp

I am getting a conversion error when calling a stored procedure in AS400/RPG/DB2 using iSeries. The db2 param is defined as CHAR 32000 and the .net app is passing in about 20000 characters and the ...
1
vote
1answer
79 views

Connecting to each DB2 platform through .NET [closed]

Recently I started working in an application that needs to write and read from a DB2 database and until now, I've never used DB2. Reading on the internet, I got some information and have made some ...
0
votes
0answers
19 views

rpg iSeries / .Net shows special char in param values

I am calling a stored procedure in DB2 from a .net iSeries prodvider. It seems like the value in the call is prepended with '\02' (STX). is this a normal behavior when calling a stored procedure in ...
0
votes
0answers
51 views

Failed to find or load the registered .Net Framework Data Provider - DB2 + .NET

I am using IBM DB2 9.5.3 with .NET 2.0 applications on windows 7 machine. When this error troubled me for windows applications I found out that this is due to difference in 64 bit and 32 bit ...
0
votes
2answers
142 views

BeginTransaction requires an open connection. The connection's current state is Open, Executing

When I run the following code I get the "BeginTransaction requires an open connection. The connection's current state is Open, Executing" exception. using (var con = new ...
0
votes
1answer
99 views

Cannot query DB2 current date with EntityFramework ObjectContext.CreateQuery

I'm using DB2, Entity Framework and C# 4.0 working together fine. My problem is when trying to get system date with the next code... var query = dbcontext.CreateQuery<TResult>("SELECT current ...
0
votes
1answer
160 views

Connecting derby with .net c# through ibm db2 driver

I'm trying to connect derby database with C# application through IBM DB2. At first I've installed IBM Data Server Driver Package, which, according to the documentation given in the following url as ...
2
votes
1answer
161 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
35 views

Is there a way to mock a DB2Exception that has no public constructors?

I'm writing unit tests and I want to simulate the scenario where a DB2Exception gets thrown. The problem is that it has no public constructors, so I can't create it, and most unit-testing frameworks ...
3
votes
1answer
266 views

Connect db2 via odbc C#.net

Could some one please help me with this problem. ERROR [IM004] [Microsoft][ODBC Driver Manager] Driver's SQLAllocHandle on SQL_HANDLE_ENV failed Description: An unhandled exception occurred ...
1
vote
1answer
297 views

IBM db2 driver deployment / installation

I'm trying to connect to IBM DB2 database with C# application. At first I've installed IBM Data Server Driver Package, which, according to the documentation is for applications using ODBC, CLI, .NET, ...
0
votes
0answers
133 views

DB2 Error: Assignment of NULL value to not null column “ ” is not allowed?

I'm trying to do an insert on a table, and it's throwing this error. However, it isn't showing me the column affected. Does anyone know whats going on here?
1
vote
1answer
192 views

DB2/400 field with CCSID 1208 (UTF-8) and oledbtype issue

I have a table in AS/400 DB2 table: SCDSC VARCHAR(120) CCSID 1208 DEFAULT NULL , CCSID 1208 implies UTF-8. In my c# code this is the definition that works. cmd.Parameters.Add("scdsc", ...
0
votes
1answer
165 views

Stored procedure connection wrapper

I have a wrapper that I use to query a DB2 database. The way I have the wrapper set up, the connections are created and disposed within the query method. This way the consumers of my wrapper do not ...
0
votes
1answer
247 views

Error when inserting data into AS400 using C# Application

I'm using .Net framework 4.0. and I've the the source code like this: .... using (MySqlCommand cmd = new MySqlCommand()) { cmd.Connection = conn; String query = "SELECT a.process_id, a.prod_dt, ...
3
votes
1answer
267 views

.NET access to DB2 in windows 8

In windows 7 I was able to connect to DB2 using IBM's DB2 driver, however this doesn't seem to work with windows 8. The installation of the client drivers fails with the following: MSI (c) (0C:18) ...
0
votes
0answers
34 views

What's the difference between OleDBConnection and Microsoft.HostIntegration.MsDb2Client for connecting to DB2 from .NET?

I am new to interacting with DB2 from .NET (using 3.5 Framework for this particular question) and it appears that there are (2) main ways to connect and query a DB2 database from .NET: ...
0
votes
1answer
141 views

Auto-generate DataTable from DB2 schema

I'm working on a project where we have a pre-existing DataSet. We don't do any persistence type stuff. It just acts as a holder for data we read in from DB2. I need to add a new column to one of the ...
0
votes
1answer
66 views

IBM DB2 9 SQL0206N EntityCommandExecutionException [colname] is not valid in the context where it is used

I am having trouble with IBM DB2 and .net Entity Framework to work. I am currently trying to get data from DB2 database using EF. This is the code: using (DBEntities ent = new DBEntities()) { ...
2
votes
1answer
286 views

Switching entity framework model from SQL Server to DB2

First - if anyone has an entity model with DB2 working, can you please post it? And now for the explanation: I have a development environment that has a SQL Server database (just for development) ...
1
vote
0answers
238 views

Command timeout with db2

I am trying to set timeout for a dbcommand, and test it that is why timeout is set to 1. This is the code I am using but timeout never fires, am I doing something wrong? NOTE: DbConnection is used ...
4
votes
2answers
153 views

.net application cannot connect to DB2 DataBase

ERROR [08001] [IBM] SQL30081N A communication error has been detected. Communication protocol being used: "TCP/IP". Communication API being used: "SOCKETS". Location where the error was detected: ...
1
vote
1answer
707 views

DB2 queries get occasional SQL0925N: Processing cancelled due to interrupt error

I have a .Net application which interacts with a DB2 database (Entity Framework, not sure if that detail is important). Occaisionally I will get the following error on queries: ERROR [57014] ...
1
vote
1answer
247 views

Datetime field overflow with IBM Data Server Client v9.7fp5

Using EntityFramework v4.1 and IBM Data Server Client v9.7fp5, DB first generated code based on a pre-defined DB2 table which has DATE columns. The DB2 DATE columns are mapped to .NET DateTime data ...
1
vote
1answer
1k views

IBM.Data.DB2.DB2Exception: ERROR [08001] [IBM] SQL30081N A communication error has been detected.

My application works with IBM DB2 via their .net provider(FP5). When i left application for a long time and after that try to get anything from database- i get the following error: ---> ...
1
vote
1answer
2k views

Problems adding object to database in Entity Framework

I have the following code trying to add an object to the database: public static void saveAudit(List<AUDIT> audit) { Entities dao = new Entities(); foreach (CMUAUDIT a in audit) { ...
0
votes
2answers
465 views

How to ignore case for string comparison in DB2 (CurrentCultureIgnoreCase not working)

The CurrentCultureIgnoreCase operative worked fine on the SQL Server instance. It however isn't working on the DB2 instance I have of the same application. I have tried the following ones: Working ...
1
vote
2answers
530 views

Entity Framework web.config connection string for IBM DB2 database

Have searched low and wide, and can't yet seem to locate a connection string for the web.config file.
0
votes
2answers
282 views

Reading db2 clob from binary download

More then a year ago I asked about reading DB2 EBCDIC data in a .Net program. The amazingly helpful answer included a routine for reading VARCHAR columns. I am now faced with reading CLOB columns. ...
2
votes
1answer
1k views

How to use TransactionScope?

I am trying to update a DB2 database (via NHibernate) under a distributed transaction but it keeps failing. Here is the code I've written: public bool ExecuteUsingDTC(List<Func<bool>> ...
0
votes
2answers
823 views

How to properly deploy IBM DB2 data provider

Im using DB2 on server and my application connects directly to that server. As data provider i use v9.7 FP5 ibm data server driver and visual studio addins. Now..To install my program on client ...
2
votes
0answers
348 views

Using “cursor with hold” on .NET towards SQL Server

In connection with a migration project, migrating data from DB2 to SQL Server I have run into a problem with the way the .NET provider towards DB2 uses (data) cursors. Today the client is executing a ...
0
votes
1answer
163 views

OdbcCommand.ExecuteReader Hangs When using IBM Data Server Driver for ODBC and CLI (CLI Driver) in .Net

I'm running into an issue when trying to use the IBM Data Server Driver for ODBC and CLI (CLI Driver) in .net. I've created a simple little test application which calls out to a DB2 database a ...
4
votes
2answers
4k views

SQL1159 Initialization error with DB2 .NET Data Provider, reason code 2

I am trying to connect to DB2 from .NET 2.0 application in my development machine running windows 7 64 bit. I am getting this error in open method. Could not find a solution. ExceptionType: ...
3
votes
2answers
275 views

DB2 .NET Provider Advice

We have an AS400 that we need to communicate with using our .NET applications. We currently develop web applications running on Windows 2003/2008 and have to run the AS400 client install to load the ...
0
votes
2answers
577 views

Can not retrieve data from a ODBC connection to DB2 iSeries

I've been trying to connect to a DB2 database on AS/400 for days! After I installed the IBM System i Access for Windows client I could create an ODBC data source from visual studio and when I click ...
1
vote
1answer
424 views

How to define terminating character for sql statement for DB2 using .net

I am tring to execute the following public void ExecuteNonQuery(string script) { try { int returnCode; var builder = new DB2ConnectionStringBuilder { ...
1
vote
3answers
376 views

Recommended way to access DB2 from .net

We are designing a system that will access DB2 databases from .Net. There appear to be 3 ways to do this: Dynamic SQL Stored Procedures CICS One benefit of using dynamic SQL, would be to remove ...
1
vote
1answer
2k views

The underlying provider failed on ConnectionString

I am getting the following error trying to connect to DB2 Entity with .Net 4.0 The underlying provider failed on ConnectionString. I get it on this line within the generated code of my entity cs ...
2
votes
1answer
2k views

.NET DB2 OLEDB pre-requisites

I have written a Windows Forms application in C#, .NET framework 2.0, that uses System.Data.OleDb to talk to an SQL Server 2000 database, which is working fine. I now need to enhance the application ...
0
votes
1answer
659 views

An unexpected error occurred in the IBM DB2, IDS, and U2 Data Provider for .NET Framework

When i try to install latest beta tools for Visual Studio 2010 (from here) i get the following error: An unexpected error occurred in the IBM DB2, IDS, and U2 Data Provider for .NET Framework. ...
1
vote
1answer
952 views

What are the differences between these IBM.Data.DB2 dlls?

I have these dlls installed on my box. What are the differnces between them and when would I use each? IBM.Data.DB2.dll IBM.Data.DB2.Entity.dll IBM.Data.DB2.ASP.dll IBM.Data.DB2.9.5.5.dll One other ...
0
votes
1answer
558 views

Slow DB2 connection on .NET

I'm working on a project where we're gonna fetch data from a DB2 database. I've been testing with both the ibm provider and simple odbc and with both approaches the connection open method is very ...
2
votes
1answer
785 views

C#: DB2 test available connection first

I have a C# .NET program running an ETL which connects to a DB2 database. Sometimes this database is down, so I'd like to do a health check at the beginning of the application to see if the database ...
1
vote
2answers
227 views

Performance Problems - Large DLLs and Large Namespaces

This is sort of the next step of the LINQ to DB2 question I asked here. Following zb_z's answer, I poked around a bit with the code for DB_Linq and have managed to add working DB2 support. (It's ...
7
votes
1answer
4k views

Connect to IBM DB2 with .Net using only .dll reference

I would like to connect to a DB2 database, specifically an iSeries version, using .Net and C# by referencing a .dll and NOT installing any software on the server. Currently we use the ...
4
votes
5answers
2k views

Generating LINQ to DB2?

I have an existing DB2 database at my job. (At least, I think it's DB2. They refer to it as "the iSeries" and it looks and feels like DB2 on some mainframe-ish hardware.) For years the .NET ...
0
votes
1answer
57 views

Migrating .NET/MySQL app. to DB2

I want to migrate my existing desktop Windows .NET 3.5 app. that uses MySQL as backend to DB2 Express C. I downloaded IBM Migration Toolkit to migrate the database. I have further queries: How ...

1 2