472,364 Members | 2,052 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,364 software developers and data experts.

DB2 driver for windows

Hi,
i'am looking for a db2 driver for windows
the DB2 servers runs on as400 if that makes any difference.

Thanks,
Philip
Jul 18 '05 #1
6 4829
In article <3f**********************@feed0.news.be.easynet.ne t>, Philip wrote:
i'am looking for a db2 driver for windows
the DB2 servers runs on as400 if that makes any difference.


I don't know if you're looking for a native driver, but if you can work with
ODBC, I was able to get DB2's ODBC driver (the one that comes with the DB2
client installation) to talk to the mx.ODBC module.

http://www.egenix.com/files/python/mxODBC.html

--
..:[ dave benjamin (ramenboy) -:- www.ramenfest.com -:- www.3dex.com ]:.
: d r i n k i n g l i f e o u t o f t h e c o n t a i n e r :
Jul 18 '05 #2
Dave Benjamin wrote:
In article <3f**********************@feed0.news.be.easynet.ne t>, Philip
wrote:
i'am looking for a db2 driver for windows
the DB2 servers runs on as400 if that makes any difference.


I don't know if you're looking for a native driver, but if you can work
with ODBC, I was able to get DB2's ODBC driver (the one that comes with
the DB2 client installation) to talk to the mx.ODBC module.

http://www.egenix.com/files/python/mxODBC.html


Currently i'am using jython for database administration (because didn't find
an native driver)

I like the java jdbc driver because you don't need to install anything
especialy interesting when sharing code)

But the downside is that you have the java tiresome api. the obvious reason
way i have choicen python/jython.

Well, prefer a native one but if it's easy to install the odbc driver
that would be fine too.

Thanks,
Philip

Jul 18 '05 #3
Philip wrote:
Dave Benjamin wrote:

In article <3f**********************@feed0.news.be.easynet.ne t>, Philip
wrote:
i'am looking for a db2 driver for windows
the DB2 servers runs on as400 if that makes any difference.


I don't know if you're looking for a native driver, but if you can work
with ODBC, I was able to get DB2's ODBC driver (the one that comes with
the DB2 client installation) to talk to the mx.ODBC module.

http://www.egenix.com/files/python/mxODBC.html


Currently i'am using jython for database administration (because didn't find
an native driver)

I like the java jdbc driver because you don't need to install anything
especialy interesting when sharing code)

But the downside is that you have the java tiresome api. the obvious reason
way i have choicen python/jython.

Well, prefer a native one but if it's easy to install the odbc driver
that would be fine too.


FYI, mxODBC works fine using the IBM DB2/400 driver for Linux:

http://www-1.ibm.com/servers/eserver...es/linux/odbc/

--
Marc-Andre Lemburg
eGenix.com

Professional Python Software directly from the Source (#1, Sep 23 2003)
Python/Zope Products & Consulting ... http://www.egenix.com/
mxODBC, mxDateTime, mxTextTools ... http://python.egenix.com/

__________________________________________________ ______________________

::: Try mxODBC.Zope.DA for Windows,Linux,Solaris,FreeBSD for free ! ::::
Jul 18 '05 #4
M.-A. Lemburg wrote:
Philip wrote:
Dave Benjamin wrote:
In article <3f**********************@feed0.news.be.easynet.ne t>, Philip
wrote:

i'am looking for a db2 driver for windows
the DB2 servers runs on as400 if that makes any difference.

I don't know if you're looking for a native driver, but if you can work
with ODBC, I was able to get DB2's ODBC driver (the one that comes with
the DB2 client installation) to talk to the mx.ODBC module.

http://www.egenix.com/files/python/mxODBC.html


Currently i'am using jython for database administration (because
didn't find
an native driver)

I like the java jdbc driver because you don't need to install anything
especialy interesting when sharing code)

But the downside is that you have the java tiresome api. the obvious
reason
way i have choicen python/jython.

Well, prefer a native one but if it's easy to install the odbc driver
that would be fine too.

FYI, mxODBC works fine using the IBM DB2/400 driver for Linux:

http://www-1.ibm.com/servers/eserver...es/linux/odbc/


Oops, you were looking for a Windows driver: those work too
with mxODBC, but I can't give you a URL.

Known issues with the driver:

* Make sure that you switch off connection pooling in the MS ODBC
manager if your are using multiple connections to the database
in a single app.

* The DB2 ODBC Driver for NT has an optimization option called
early cursor close (or similar). This has to be switched off.
Otherwise, you'll get lots of SQLSTATE 08001 or 080003 errors
during connects and parallel execution of commands becomes
impossible.

--
Marc-Andre Lemburg
eGenix.com

Professional Python Software directly from the Source (#1, Sep 23 2003)
Python/Zope Products & Consulting ... http://www.egenix.com/
mxODBC, mxDateTime, mxTextTools ... http://python.egenix.com/

__________________________________________________ ______________________

::: Try mxODBC.Zope.DA for Windows,Linux,Solaris,FreeBSD for free ! ::::
Jul 18 '05 #5
Hi Philip,

please note that the Drivers available at http://www.openlinksw.com
will provide you with JDBC as well as ODBC access to DB2 from almost
any OS.

Hth,
Regards,
Jan
Philip <SP*******@freegates.be> wrote in message news:<3f**********************@feed0.news.be.easyn et.net>...
Dave Benjamin wrote:
In article <3f**********************@feed0.news.be.easynet.ne t>, Philip
wrote:
i'am looking for a db2 driver for windows
the DB2 servers runs on as400 if that makes any difference.


I don't know if you're looking for a native driver, but if you can work
with ODBC, I was able to get DB2's ODBC driver (the one that comes with
the DB2 client installation) to talk to the mx.ODBC module.

http://www.egenix.com/files/python/mxODBC.html


Currently i'am using jython for database administration (because didn't find
an native driver)

I like the java jdbc driver because you don't need to install anything
especialy interesting when sharing code)

But the downside is that you have the java tiresome api. the obvious reason
way i have choicen python/jython.

Well, prefer a native one but if it's easy to install the odbc driver
that would be fine too.

Thanks,
Philip

Jul 18 '05 #6
M.-A. Lemburg <ma*@lemburg.com> pisze:
FYI, mxODBC works fine using the IBM DB2/400 driver for Linux:

http://www-1.ibm.com/servers/eserver...es/linux/odbc/


Oops, you were looking for a Windows driver: those work too
with mxODBC, but I can't give you a URL.


There's no URL. Windows ODBC driver for DB2/400 is part of ClientAccess
Express suite and is not available separately.

--
Jarek Zgoda
Registered Linux User #-1
http://www.zgoda.biz/ JID:ja***@jabberpl.org http://zgoda.jogger.pl/
Jul 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Fons Dijkstra | last post by:
Hello, I'm using the mx.ODBC.Windows package in order to read/write a MSAccess database. Everything works fine apart from the DATE format handling. I'm using the default "datetimeformat" (i.e....
11
by: DJJ | last post by:
I am using the MySQL ODBC 3.51 driver to link three relatively small MySQL tables to a Microsoft Access 2003 database. I am finding that the data from the MySQL tables takes a hell of a long time...
7
by: Rhino | last post by:
I was reading the DB2 for Linux/Unix/Windows (V7.2) manuals just now to get some background information about UDFs when I came across this: "Note that valuable debugging tools such as printf() do...
1
by: MLH | last post by:
I'm running XP. Is it required that a given ODBC driver be selected or set somehow as a default driver? Look at this... Here's the error: Error: ODBC call failed... Datasource not found and no...
12
by: Steve | last post by:
I wrote a simple virtual device driver int15.sys, Is C# support load the device driver from AP?
0
by: am | last post by:
Hi, I have an USB hardware device that came with some (poor) software. I would like to write my own software to use the hardware in dotnet. There are no COM dll's to reference from the...
3
by: Dilip1983 | last post by:
Hi, I am unable to install ac 97 realtek audio driver in my system(Windows XP). Earlier i tried to install Realtek Audio Driver in Windows XP which gave me error(Install Realtek HD Audio Driver...
1
by: maheshgupta0248 | last post by:
Hi everyone.. Im newbie in the driver development.. till now i have developed some drivers in Linux. Now I have to change to Windows.. can anyone tell me what are the real differences between driver...
2
by: wassimdaccache | last post by:
Dear all I am using windows server 2003 sp1. I am connecting a printer called BIRCH prp080 to my pc using the serial port. the printer is working well when I install the driver but the...
2
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
1
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
1
by: ezappsrUS | last post by:
Hi, I wonder if someone knows where I am going wrong below. I have a continuous form and two labels where only one would be visible depending on the checkbox being checked or not. Below is the...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.