Recognising a third-part driver for 'Ingres' database

Hi,
Great product, SQL Developer. I use it a lot, recommend it to everyone.
I am trying to connect to an 'Ingres' database. I have the JDBC driver jar file. I have gone to preferences -> Database -> Third party JDBC driver -> Add Entry. From here, the dialog files the driver jar file.
I clicked 'ok' at this point, but this does not allow me to create connections. I guess I need to point SQL dev at the actual java class file with the driver. (like 'com.oracle.JdbcDriver' etc)
So I used the 'Add Entry' dialogue to look inside the jar file. But this still does not recogise the driver classes.
The driver are connection details are ok, I can use it from other tools besides SQL Developer.
Any ideas appriciated!
Thanks,
JM

when having a look at the SQL Developer 3.0 data sheet it states:
With SQL Developer, users can connect to any supported Oracle Databases including Oracle Express Edition. Users can create database connections for non-Oracle databases IBM DB2 LUW, MySQL, Microsoft SQL Server, Microsoft Access, Sybase Adaptive Server and Teradata for object and data browsing and migration.
=> So I don't think Ingres databases can be linked from SQL Developer. Squirrel might be an alternative.

Similar Messages

  • Thin driver for Access Database

    Hi Guys,
    I want to know the exact thin JBBC driver for access database,
    For oracle we have "jdbc:oracle:thin:@host:port:sid" driver, I need the similar type of driver for Access,
    Where can I find
    Thanks

    let me be a bit more descriptive..
    there's no free, publicly available type 3 or 4 driver for Access.
    However, if you want to buy one, take a look at this URL: http://industry.java.sun.com/products/jdbc/drivers .
    It'll help you identify third-party vendors who sell what you're looking for...
    Larry

  • Need jdbc driver for Ingres, linux

    where can I find a try version of linux jdbc driver for Ingres.
    how to know what jdbc drivers are in the jdk's java.sql?

    where can I find a try version of linux jdbc driver
    for Ingres.I'd check the driver list on the Javasoft site http://industry.java.sun.com/products/jdbc/drivers
    Other good resources can be found here http://ourworld.compuserve.com/homepages/Ken_North/jdbcvend.htm and here http://www.javaskyline.com/database.html#ordbms
    how to know what jdbc drivers are in the jdk's
    java.sql?I believe its only the JDBC/ODBC bridge but the JDBC documentation should tell you.
    Col

  • Java.sql.SQLWarning: [Microsoft][SQLServer 2000 Driver for JDBC]Database

    HI!
    I am updating a table in sql server 2000 using PreparedStatement but as im trying to updateit. SQL is giving error or rather we can say warning.
    java.sql.SQLWarning: [Microsoft][SQLServer 2000 Driver for JDBC]Database changed to BRSHere BRS is my database name.
    no error is generated .all the PreparedStatement is executes normally.
    Can any one tell me anything about this

    All the PreparedStatement is executes normally.But data is not updated in the database.

  • I want JDBC driver for Sybase database...

    Hi All:
    Can any one help me with JDBC driver for Sybase database ? I have surfed the net, but not able to find a Sybase driver that works correctly.
    Also, can you please let me know if anything special needs to be done in case of Sybase database connection, apart from what we normally do to connect to a database like "Oracle" or "MS SQL Server".
    Thanks and Regards,

    And why do you think someone using Oracle might know the Competitor's drivers?
    Having said this: you should give jTDS a try:
    http://jtds.sourceforge.net
    Also, can you please let me know if anything special
    needs to be done in case of Sybase database
    connection, apart from what we normally do to connect
    to a database like "Oracle" or "MS SQL Server".It's all in the docs of the driver

  • Is this possible to already reserve 2 TB of space on a data drive for one database

    Is this possible to already reserve 2 TB of space on a data drive for one database.
    Please suggest how to do this.
    Best regards,
    Vishal

    You can either change the current filesize of current files in your database or add new file(s) whose current size is 2TB by using the ALTER DATABASE command.  If you don't have instant file initialization, adding 2TB to data files can take a long time. 
    If you are adding 2TB to log files that can take a long time whether you have instant file initialization or not.  For info on instant file initialization see
    http://technet.microsoft.com/en-us/library/ms175935%28v=sql.105%29.aspx
    and
    http://sqlblog.com/blogs/tibor_karaszi/archive/2009/03/09/do-you-have-instant-file-initialization.aspx
    In addition, there are several good links in the comments to Tibor's blog entry, especially the links to Paul Randal's blog.
    Tom

  • Create new driver for my database

    Hi !!! everyone.
    I have database that don't have driver. (This database is my research project.) I don't know how to create driver for use with JDBC. Can you suggest me ???
    Thank you vey much...

    you need to implement parts of the JDBC API.
    for starters you should implement the following interfaces...
    java.sql.Driver
    java.sql.Connection
    java.sql.Statement
    java.sql.ResultSet
    you probably should give consideration to implementing
    java.sql.ResultSetMetaData
    java.sql.DatabaseMetaData
    java.sql.ParameterMetaData
    java.sql.PreparedStatement
    you can decide on implementing the other interfaces and data source if it applies/you will need it but the first four would be the minimum for what you describe and the other three are things you would most likely want.
    if getting started in your implementation is overwhelming you I might suggest looking at the source from one of the open source JDBC drivers out there they can make an excellent tool for learning. two suggestions offered would be the JConnector (MySQL JDBC driver) and the jTDS (SQL-Server driver)

  • Problem in SQL Server 2000 Driver for Java Database Connectivity

    Hi,
    I have problem with MS SQL 2000 JDBC driver. I am using Type-4 driver for my application. I can able to connect through DSN. If I use Type-4 Driver to connect database means it gives the following exception.
    java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Error establishing socket.
         at com.microsoft.jdbc.base.BaseExceptions.createException(Unknown Source)
         at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)
         at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)
         at com.microsoft.jdbc.sqlserver.tds.TDSConnection.<init>(Unknown Source)
         at com.microsoft.jdbc.sqlserver.SQLServerImplConnection.open(Unknown Source)
         at com.microsoft.jdbc.base.BaseConnection.getNewImplConnection(Unknown Source)
         at com.microsoft.jdbc.base.BaseConnection.open(Unknown Source)
         at com.microsoft.jdbc.base.BaseDriver.connect(Unknown Source)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at test.TestDB.main(TestDB.java:17)
    My Java Code :
    String driver = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
    Class.forName(driver);
    Connection con = DriverManager.getConnection("jdbc:microsoft:sqlserver://192.168.48.90:1433;User=sa;Password=sa;DatabaseName=GWCANADA");
    Statement st = con.createStatement();
    ResultSet rs = st.executeQuery("select * from emp");Do we have any other jdbc driver to connect MS SQL 2000 aprt from the Microsoft JDBC driver.
    Plese help me to resolve this problem
    Thanks
    ---Suresh

    Same problem is here: http://forum.java.sun.com/thread.jspa?threadID=419214&tstart=135
    Check that your server is running (telnet <hostname> 1433)
    --Xapp                                                                                                                                                                                                                                                                                                                   

  • Intersense Inertiacube, IC3, ITrax2, InterTrax2 -- third party driver for Labview

    Hi,
    I've been attempting to use the third party driver located at:
    http://sine.ni.com/apps/utf8/niid_web_display.download_page?p_id_guid=1540162FC7953043E0440003BA7CCD...
    to communicate with an Intersense Inertiacube via Labview 8.2.  It does work, but it causes sporadic Labview crashes as well.  Typically Labview will crash in one of the following scenarios (in order of frequency):
    - upon editing any VI after running and successfully stopping the Intersense communicating VI
    - upon stopping the Intersense communicating VI (not the halt button, but a healthy stop)
    - upon starting the Intersense communicating VI (very rare, and typically only after several successful starts/stops of the VI)
    My hunch is that this is a memory management issue related to the third party DLL wrapper (isense_dll_wrapper.dll).  Does anyone have any experience with this?  Anyone know the history of who wrote the wrapper?  Is the source code available?  Is there a way of having the DLL open/run in its own memory space, separate from Labview's memory space? 
    Is there a way of having the VI run in a separate memory space from the rest of Labview (so at least if it does crash it won't take all of Labview with it)?
    Thanks for your time,
    ~ Jay

    If anyone knows how to contact Sacha Emery, ATE Systems Engineer @ NI, he may have more information regarding this.  (He may even have the DLL wrapper source code.)  His name is in the ITrax2 Readme.txt file as the creator.
    ~ Jay

  • JDBC Driver for Progress Database

    Hi experts,
    We need to connect our SAP PI 7.0 which is running on Windows 2003 Server x64 bit Standard/Enterprise Edition SP1 to a progress database 9.1D version on Unix. The problems are
    1. What JDBC driver should I use?
    2. We tried to copy progress JDBC driver jar files from the progress database installation directory into my windows machine and tried to run it, it fails to run. It gives the following error
    Error during database connection to the database URL 'jdbc:JdbcProgress:T:156.5.31.65:inodbc2' using the JDBC driver 'com.progress.sql.jdbc.JdbcProgressDriver': 'com.sap.aii.adapter.jdbc.sql.DriverManagerException: Unable to locate a suitable JDBC driver to establish a connection to URL 'jdbc:JdbcProgress:T:156.5.31.65:inodbc2''
    3. Does anyone know what connection architecture should I use to run under such environment?
    Thanks
    Charu

    Hi,
    To install JDBC driver follow the how to guide.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/xi/xi-how-to-guides/how%20to%20install%20and%20configure%20external%20drivers%20for%20jdbc%20and%20jms%20adapters.pdf
    Configuration of JDBC Adapter for SQL Server
    JDBC Driver = com.microsoft.jdbc.sqlserver.SQLServerDriver
    Connection = jdbc:microsoft:sqlserver://hostname:<port>;DatabaseName=<DBName>
    UserID and Password.
    If the connection is not working find the correct port number.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/40b92770-db81-2a10-8e91-f747188d8033
    JDBC- X I -  R/3 Scenario
    /people/bhavesh.kantilal/blog/2006/07/03/jdbc-receiver-adapter--synchronous-select-150-step-by-step
    /people/sap.user72/blog/2005/06/01/file-to-jdbc-adapter-using-sap-xi-30
    Please check the driver path as mentioned below.
    JDBC Driver : sun.jdbc.odbc.JdbcOdbcDriver
    Connection:jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=//location of DB table.mdb;
    No JDBC driver required.
    Receiver JDBC scenario MS access - /people/sameer.shadab/blog/2005/10/24/connecting-to-ms-access-using-receiver-jdbc-adapter-without-dsn
    follow this thread
    Re: Problem when connecting to MS Access through JDBC Adapter.
    SAP Note 850116 has details
    Thanks,
    Satya Kumar
    Reward Points If it is Useful..

  • How To Change Map Drive for my Database?

    Hi all,
    I bought an external Usb Disk with 1TB storage capacity and attached it to my laptop, because I am running out of space for new 11g Database Creation.
    It was mapped by default at G:\ then I created a new database 11g on it. Then during night time, I shutdown my laptop and remove my external disk.
    Next morning I startup my laptop again and attached by external disk. But to my surprise it is mapped as E:\ so I can not startup my database :(
    How can I switch it back to G:\ please.
    Thanks a lot.

    KinsaKaUy? wrote:
    Hi all,
    I bought an external Usb Disk with 1TB storage capacity and attached it to my laptop, because I am running out of space for new 11g Database Creation.
    It was mapped by default at G:\ then I created a new database 11g on it. Then during night time, I shutdown my laptop and remove my external disk.
    Next morning I startup my laptop again and attached by external disk. But to my surprise it is mapped as E:\ so I can not startup my database :(
    How can I switch it back to G:\ please.
    Thanks a lot.
    Hi,
    Right click on my computer, choose manage, choose disk management under storage, choose your external drive, right click and choose change drive letters and path, change it to G:
    Cheers

  • Use of third part Middleware for Certifying Integration

    Hi ,
    We have a third party middleware(open source) which we want to certify for integrating with SAP. This middleware uses JCo to connect to SAP.
    Hence my idea is to
    1 . Identify some standard business case scenarios in SAP(PR Create, PO Create and GR create) for showcasing the integration points. We would be using IDoc and RFC as the API in SAP.
    2. We are also planning to build a ThirdParty application( might be in Java) which would be used as the target system.
    3.We would be using third party open source middleware to connect between the Third party application(Java built) and SAP System.
    We are planning to certify this under "J2EE-STD 7.0 deployment certification based on the SAPNetWeaver7.0" .
    My question, Is this approch certifyable? If not what approch should we take?
    Comments on this approch would be highly appreciated.
    Thanks,
    Venu

    Closing this message

  • Third parties tools for MaxDB

    Hi forum,
    SQL Studio and Database Manager are great tools in most of cases. I would need better tools for managing datas and databases.
    My main aim would be a database upgrading tool. I mean a MaxDB complient tool to add/remove/update tables, stored proc, cursors and so on between an A and a B MaxDB database.
    Well a MaxDB database versionning tool.
    King regards

    Hello Vincent,
    1)  The Installation Manager for the MaxDB software is a graphical interface tool enabling
    you to install the entire MaxDB software package or individual software components and
    also create, upgrade and uninstall a database instance.
    Please see more information at
    "Using the Installation Manager" < SDBSETUP > at
    http://maxdb.sap.com/currentdoc/74/df234239f75733e10000000a155106/content.htm
    < And all MAXDB users could review the documentations to install the MAXDB
    at https://www.sdn.sap.com/irj/sdn/maxdb
    < -> "Installation on MS Windows and Linux" >
    <-> The Complete MaxDB Documentation Set -> Installation >>
    2)  You could use the dbmcli & sqlcli tools. Documentation available at
             http://maxdb.sap.com/currentdoc/default.htm ->
    "Database Manager CLI" &  SQLCLI     < Database tools >
    3) Please also review documentation on the database tools "Loader" & "Synchronization Manager"
        at http://maxdb.sap.com/currentdoc/default.htm ->Tools
        And Loader Tutorial shows examples for commands of the Loader tool for exporting and importing data.
    Thank you and best regards, Natalia Khlopina

  • JDBC Driver for MySQL database which should support JDBC2.0 function

    Hi, Guys,
    I'm using JDK1.3 and mm.mysql-2.0.4-bin.jar in Windows NT. When I run following program, I got the error: java.sql.SQLException: ResultSet not updatable. (the function rs.last() is working).
    Based on the documentation, mm.mysql-2.0.4-bin.jar driver should support JDBC2.0 function, but in fact, it's not. So, what's wrong or where is the correct driver?
    Thank you in advance anyway!
    import java.sql.*;
    import java.sql.ResultSet.*;
    import java.util.*;
    public class BridgeMysql{
    public static void main (String[] args) throws Exception {
    String sTable = "test";
    try {
    Class.forName("org.gjt.mm.mysql.Driver").newInstance();
    Connection conMysql = DriverManager.getConnection("jdbc:mysql://localhost/myDatabase?user=user&password=password");
    Statement st = conMysql.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
    ResultSet rs = st.executeQuery("Select * from "+sTable);
    //rs.last();
    rs.moveToCurrentRow();
    System.out.println("Table "+sTable+" contains "+String.valueOf(rs.getRow())+" rows");
    rs.close();
    st.close();
    conMysql.close();
    catch (Exception e)
    System.out.println(e);

    Thought I might add something interesting I found.
    You need to include the field in your primary key. I only have one field in the key so I dont know how it works if you have more than one key.
    Makes sense considering Mark stated that you need the primary index defined. Looks like you need the fields as well from the select statement.
    Can anyone comment on why this is?

  • Adding third part drive to iMac while still under AppleCare?

    Still have a year left on AppleCare and want to replace the HD with a SSD. Would that void my coverage?
    Someone said he thought if I needed warranty work over the next year, I would just need to restore it to its original condition. Does someone know for sure?
    If that's the case, wouldn't even need a certified tech it seems...unless it's a tricky enough proposition to require more skill and experience than a tech-savvy friend. What do you think?
    Thanks,
    Gene

    Yes that will void your coverage. If you took the machine to an Apple Store for service they likely would decline the coverage once the machine was opened. However if you took it to an AASP, asked them to install the SSD and then asked them to cover the machine (less the SSD of course) under AppleCare you may have better luck.
    In short, if you have any doubts wait until your AppleCare has expired.

Maybe you are looking for

  • Std Report for headcount

    frnzz, Is there a standard report to find out the headcount in an organisation? Useful anwers will be rewarded. thanx in advance Viggy

  • Follow Up Document - Items are not selectable (BUS2000117)

    Hi CRM Experts, we have created a service Order (BUS2000116) and afterwards we want to create a Service Notification (BUS2000117). When pressing the button 'Follow-Up' a Pop-Up is opening where we normally should have the option to select the items w

  • Full_Screen_Interactive problem

    Hi there, I am creating an Air app that contains an HTML component that loads a web page that contains a flash graph. I am wanting to run the app in fullscreen, but when I enter fullscreen, the flash graph on the web page goes blank. The flash graph

  • Photo Booth and hard reset

    Recently I wanted to show my friend photo booth. I chose it from the dock, but it kept jumping without coming on. I launched activity monitor to see if something wasn't eating my RAM, but it showed only photo booth in red. I then tried to force quit

  • DST Solaris 8 and 9

    Hi, How do I find out if any DST patches for Solaris 8 or 9 have been released after 2006/12/31? We have already patched for the quarter and I didn't know if I need additional OS Patches! Thanks, Doug