JDBC for Unidata 5.1?

Does anyone know if there is a jdbc driver for Unidata 5.1?

I've have the same question regarding Unidata 5.2. Did you ever get a response or any sort of resolution? I checked the Informix site (informix.com) and one of their documents said that version 6.0 (due out in Q3 or Q4 of 2002) was going to be JDBC compliant. Obviously, that doesn't help us much, but I'm still searching for a work-around.

Similar Messages

  • BI Publisher JDBC for Unidata database

    Does any one know how to setup the BI Publisher - JDBC add a data source to connect to Unidata database?
    I followed up the IBM Unidata JDBC instuction and found it not really working at all.
    Any one been setup like that please give me a light.
    thanks
    CK

    There is information to converting Crystal Reports to BIP Publishers
    http://www.oracle.com/technology/products/xml-publisher/index.html
    http://download.oracle.com/otndocs/xmlp/CrystaltoBIP.pdf
    Maybe it could interest you
    Regards
    Christophe

  • Does j2me support jdbc for Palm Oracle Lite(8i/9i)

    I have a requirement to develop an application in Java for PALM OS with Oracle Lite 8i/9i connectivity. does j2me support jdbc for Palm Oracle Lite(8i/9i). Please help me to know what all java VM available in the market which have oracle connectivity(jdbc/odbc/whatever) for Oracle Lite for PALM.
    thanks
    dk

    Pleae some one reply, if j2me/kvm supports jdbc/odbc connectivity to oracle lite 9i/8i on palm
    thanks
    dk

  • JDBC for Postgresql(on Linux): java.lang.NullPointerExceptio--Please HELP!

    I'm trying to build a JSP web application with Apache Tomcat 4.0 on Linux, using PostgreSQL database.
    The test page for building a connection to the database is very simple.
    However, unfortunately, I always get the following error message from the web server.
    The code is also show below.
    I have another Tomcat server working on Window2000 with Oracle. So I change the JDBC driver to Oracle on that machine, and it works fine.
    I guessed I might have some problem with the Tomcat setting, but I'm not sure what I need to change.
    The directory of my web application is built under the webapps.
    And I've added JAVA_HOME, JAVA_HOME/lib/tool.jar, and JDBC for PostgreSQL to my CLASSPATH.
    Is there any other configuration that I missed?
    Please help if you see the problem.
    Thanks a lot in advance.
    Error message:
    type: Exception report
    message: Internal Server Error
    description: The server encountered an internal error (Internal Server Error) that prevented it from fulfilling this request.
    exception
    java.lang.NullPointerException
         at org.apache.jsp.index$jsp._jspService(index$jsp.java:231)
         at org.apache.jasper.runtime.HttpJspBase.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(Unknown Source)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(Unknown Source)
         at org.apache.jasper.servlet.JspServlet.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Unknown Source)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(Unknown Source)
         at org.apache.catalina.core.StandardWrapperValve.invoke(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invoke(Unknown Source)
         at org.apache.catalina.core.ContainerBase.invoke(Unknown Source)
         at org.apache.catalina.core.StandardContextValve.invoke(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invoke(Unknown Source)
         at org.apache.catalina.core.ContainerBase.invoke(Unknown Source)
         at org.apache.catalina.core.StandardContext.invoke(Unknown Source)
         at org.apache.catalina.core.StandardHostValve.invoke(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
         at org.apache.catalina.valves.ErrorReportValve.invoke(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
         at org.apache.catalina.valves.AccessLogValve.invoke(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invoke(Unknown Source)
         at org.apache.catalina.core.ContainerBase.invoke(Unknown Source)
         at org.apache.catalina.core.StandardEngineValve.invoke(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invokeNext(Unknown Source)
         at org.apache.catalina.core.StandardPipeline.invoke(Unknown Source)
         at org.apache.catalina.core.ContainerBase.invoke(Unknown Source)
         at org.apache.catalina.connector.http.HttpProcessor.process(Unknown Source)
         at org.apache.catalina.connector.http.HttpProcessor.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:484)
    Here's my code:
    <%@ page language="java" import="java.io.*, java.sql.*, java.util.*, java.lang.*" %>
    <HTML>
    <HEAD>
    <TITLE>TEST</TITLE>
    </HEAD>
    <BODY>
    <b> City </b><br>
    <%
         Class.forName("org.postgresql.Driver");
         String sqlurl = "jdbc:postgresql://localhost:5432/customer";
         String username = "guest";
         String passwd = username;
         Connection conn = DriverManager.getConnection(sqlurl, username, passwd);
         Statement st = conn.createStatement();
         String queryStr = "select CITY from WEATHER";
         ResultSet rs = st.executeQuery(queryStr);
         if (rs != null){
              while(rs.next()){
                   String strCity = rs.getString(1);
    %>
    -- <%=strCity %> --<br>
    <%
         st.close();
         conn.close();
    %>
    </BODY>
    </HTML>

    Error is not there in the code what you are showing. Can you edit index$jsp.java and see what is there in line 231?
    You may find it in tomcat_home\work\your_application directory.
    Sudha

  • JDBC for Oracle 8i (8.1.5)in JRE 1.2

    I'm trying to connect to Oracle 8i dbms (8.1.5) thru an applet.
    In JDeveloper 2.0 environment (with JDK1.2) it works fine, but
    at netscape 4.5 with JRE plug-in version 1.2, it throws an
    exception from oracle connection "No Suitable Drive".
    I've read the FAQ regarding the issue and tried to use the
    following JDBC versions, facing the same problem:
    JDBC for 8.0.5 (classes111.zip)
    JDBC for 8.1.5 (classes111.zip)
    JDBC for 8.1.6 (classes12.zip)
    JDBC for 8i - 8.1.5 (of Jdeveloper 1.1)
    BTW, All of the above JDBC versions connects fine under netscape
    to oracle 7.3, oracle 8.0.5.
    (I've tried JRE 1.2.2 as well but no success)
    PLEASE HELP !!!!
    null

    Have you tried setting the CLASSPATH and related JDBC environment
    variables so that your JDBC app recognizes the Driver that you're
    calling when registering? Have you done a version string check
    on that driver's class itself from the command line?
    (java jdbc.xxxx.Driver)
    HTH
    Avi (guest) wrote:
    : I'm trying to connect to Oracle 8i dbms (8.1.5) thru an applet.
    : In JDeveloper 2.0 environment (with JDK1.2) it works fine, but
    : at netscape 4.5 with JRE plug-in version 1.2, it throws an
    : exception from oracle connection "No Suitable Drive".
    : I've read the FAQ regarding the issue and tried to use the
    : following JDBC versions, facing the same problem:
    : JDBC for 8.0.5 (classes111.zip)
    : JDBC for 8.1.5 (classes111.zip)
    : JDBC for 8.1.6 (classes12.zip)
    : JDBC for 8i - 8.1.5 (of Jdeveloper 1.1)
    : BTW, All of the above JDBC versions connects fine under
    netscape
    : to oracle 7.3, oracle 8.0.5.
    : (I've tried JRE 1.2.2 as well but no success)
    : PLEASE HELP !!!!
    null

  • How to establish a trusted connection with JDBC for SQL SERVER 2000

    Hi!I am using jdk 1.4 and eclipse 3.3.
    I create a servlet in eclipse with in-build tomcat.
    When I run it ,it was working perfectlly has it was suppose to work.
    In this servlet I connect to a sql 2000 database using jdbc-odbc bridge driver.
    But when I tried to deploy the servlet on tomcat 5.5 manully on the same machine ,it gave me error saying
    [Microsoft][SQLServer JDBC Driver][SQLServer]Login failed
    for user 'sa'
    I searched around some post and found that ok ,I need trusted connection
    But I have 2 Questions
    1). Why was in eclipse I was able to connect to the SQL server and why not in the servlet which I deployed manully on tomcat.
    2). How do I create a trusted connection with JDBC for SQL server 2000
    Thnaks for your help in advance.

    Hi! duffymo ,QussayNajjar ,dvohra09 .
    Thank for help.
    The ideas are really great.
    I am trying generate reports for my company.
    When I used eclipse the code worked perfectly.
    below is code which I used
    out.println("Calling For Class Name<br>");
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    out.println("Calling For Class Name success Now calling database <br>");
    1). jdbcConnection = DriverManager.getConnection("jdbc:odbc:SQLJasper");
    2). jdbcConnection = DriverManager.getConnection("jdbc:odbc:Driver={SQL Server};Server=ServerName;Database=tempdb");
    3). jdbcConnection = DriverManager.getConnection("jdbc:odbc:Driver={SQL Server};Server=ServerName;Database=tempdb","UID=UserName","Password=Password");
    out.println("connecting to database success<br>");
    I had tried to connect the database using this three way.
    In 1st I tried using DSN name .
    Next 2 self explainer for expert like you.
    I used to 2nd variant to connect in eclipse and it worked fine.
    I not an expert in java ,I just doing some research on jasperReport.
    My best guest is that eclipse is using some library files of which I have no clue.
    Thank's for your help,I appretiate it.
    Once again thank a billion.
    Sorry for the messy righting.

  • JDBC for MS SQL Server 2000

    Hi all, i'm newbie here and i have some problems doing with Java for my Final Project, just for my graduation...
    Here's the problem ...
    First i install the JDK 1.5 and MS SQL Server 2000. And then i also install JDBC for MS SQL Server 2000 sp3. Than i'm doing some experiments with JDBC, but its result error that i couldnt understand how to fixed it...
    I'm asking is JDBC for MS SQL Server 2000 sp3 doesn't support j2ee 1.5.0 and where i can find native driver jdbc for MS SQL Server 2000.
    Please help me....

    Than i'm doing some experiments with JDBC, but
    its result error that i couldnt understand This is the most important part of your post yet you don't seem to recognize it as such.
    Tell us what the error is. Not what you think it is. Exactlly what it says. And please provide a relevent, formatted snippet of code.

  • Use the jdbc for oracle

    Hello folks,
    I have this issue:
    i develop a java application using JBUILDER 9 under windows where the application use jdbc for connection to oracle,i add the jdbc package from the tools>configure jdk...... and so, under windows everything works fine.
    what i want is to run my program under unix, also when trying to compile the program under unix i got the error on the jdbc package, please can anyone help with how to import the jdbc package, where i must put it on unix under which folders, and how to import to my class, a small example will help a lot, and thank you...

    Just make sure your Oracle JDBC is on your class path!

  • Where can i find the Oracle JDBC for Oracle RDBMS 8.1.7 ? Thanks.

    Where can i find the Oracle JDBC for Oracle RDBMS 8.1.7 ? Thanks.

    http://otn.oracle.com/software/tech/java/sqlj_jdbc/content.html

  • JDBC for non-relational Databases.

    Hi All,
    correct me if I am wrong in my understanding,
    1. JDBC are a set of specifications (as interfaces etc..) which each
    vendor is expected to provide implementation.
    2. JDBC is for relationsla databases only (like oracle,MySQL etc..) it
    does not take into account the access to non-relational databases.
    3. If 2 is true, is there an equivalent of JDBC for non-relational
    databases?
    TIA.

    1. JDBC are a set of specifications (as interfaces etc..) which each
    vendor is expected to provide implementation.
    Broadly speaking, yes. It doesn't have to be the vendor that provides the implementation, and an ODBC driver (to be used via the JdbcOdbc bridge) is adequate if a native JDBC driver is not available.
    2. JDBC is for relationsla databases only (like oracle,MySQL etc..) it
    does not take into account the access to non-relational databases.
    It expects tabular results. Aside from that I don't think it mandates anything about the design of the underlying system. Certainly it's entirely agnostic about syntactic issues.
    For example, it can talk to Excel spreadsheets, via the JdbcOdbc bridge, and Excel is by no stretch of the imagination a relational database. IMS is not a relational database, but that has a JDBC driver.
    3. If 2 is true, is there an equivalent of JDBC for non-relational
    databases?
    2 is not true, and I'm not aware of any "non relational" database connection standard, probably for this very reason. There may well be vendor specific tools for talking to some systems.

  • Drivers JDBC for Windows CE

    I want to develop an application using java which works in a PDA. I whish to access to the Oracle8i Lite installed in the same PDA.
    Exist drivers JDBC for Windows CE? It is possible?
    Thanks.

    Hello-
    National Instruments currently does not have any Windows CE drivers and do not, at this time, have plans to develop a driver.
    Ray K
    NI Applications Engineer

  • JDBC for use with jdk1.4

    Is the download file:JDBC for use with jdk1.4 in oracle website contains oracle jdbc2.0 ??

    Is the download file:JDBC for use with jdk1.4 in oracle website contains oracle jdbc2.0 ?? the JDK 1.4.x related jars/zips @ http://otn.oracle.com/software/tech/java/sqlj_jdbc/htdocs/jdbc9201.html
    contain the complete JDBC 2.0 features as well as some JDBC 3.0 features supported as of this JDBC release
    For more details, see 9i DB R2 features overview http://otn.oracle.com/tech/java/htdocs/9idb2_java.html
    Kuassi

  • Where is the JDBC for ORACLE8.05?

    where is the JDBC for ORACLE8.05?

    As stated in the FAQ: http://otn.oracle.com/tech/java/sqlj_jdbc/htdocs/jdbc_faq.htm#02_02
    you can use the Driver 9.0.1 that is available here:
    http://otn.oracle.com/software/tech/java/sqlj_jdbc/index.html

  • JDBC connection for Unidata (6.1) database

    Does any one know from the BI Publisher JDBC data source how to connect to a Unidata 6.1 database?
    I have installed the UnidataDK on the BI Publisher machien, but not sure what's the setting for the class driver and connection string.
    And also what else need to do for Oracle BIPublisher applicaton to know the Unidata driver path etc.
    Appreciate anyone can give me a light.

    Hi,
    according to this document, Unidata JDBC driver class name is {noformat}com.ibm.u2.jdbc.UniJDBCDriver and URL format is jdbc:ibm-u2://<host>[:<port>]/<account>[[;name=value]...]{noformat}

  • Compatible JDBC for Java 1.4.2.05 on HP-UX 11.00

    Hello,
    I am looking for a JDBC that is compatible with Java 1.4.2.05 running on an HP-UX 11.00 O.S Any help will be appreciated.
    Thanks,
    Bill

    Hello Dr,
    the website http://servlet.java.sun seems to gone or down for some reason-any alternatives?
    Thanks for your response to my question!
    Cheers,
    Bill McBride

Maybe you are looking for

  • Brand New iMac unable to read data DVD or eject it.

    Hello all, I'm no good with technology so please bear with me. I just purchased a brand new iMac a couple of weeks ago, and I'm attempting to run a Data DVD that I got for an online university class. When put in to the disc drive, one of two things h

  • Windows 7 and Palm Centro help needed please

    Can someone recommend an inexpensive blue tooth external adapter that is compatible with Windows 7, 64 bit so that I can sync my Palm Centro? Thank you. Post relates to: Centro (Verizon)

  • Cfqueryparam behaving really strange

    Hi! I have the following scenario. CFMX 7.0 MS SQL 2005 Col1 and Col3 are nvarchar and Col 2 is an int Working sql: (returns all rows matching clause) SELECT * FROM table WHERE col1 = <cfqueryparam cfsqltype="cf_sql_varchar" value="#var1#"> AND col2

  • Product Replication from CRM 5.0 to ECC 6.0

    Hi,     My requirement is to replicate newly created product master from CRM  to ECC.    For this I created subscription with publication name <b>Product Materials (MESG)</b>.    Nest created product in CRM,  but this product is not replicated to ECC

  • Case ID: 513699145

    Case ID: 513699145