ODBC driver available for 3.x

Does anybody know the trick for getting sqldeveloper to support opening connections to odbc data sources?

There isn't one. ODBC isn't supported.

Similar Messages

  • Best driver available for MicroSoft SQL server?

    Hi,
    I am using MS-SQL server for my application server.
    Which driver should i use for it?
    Right now I am using ODBC driver.
    Please suggest me a few links where i could get the best driver(thin driver) for SQL server.
    regards
    suri

    Hi,
    best driver available for MicroSoft SQL server?i-net software has written a solid JDBC driver based on TDS. The trial version is limited to a single connection. http://www.inetsoftware.de/English/Produkte/JDBC_Overview/ms.htm
    jTurbo provides jdbc driver for MS SQL Server (www.jTurbo.com).
    Merant technologies also provides jdbc driver for MS SQL Server. Find more details at http://www.microsoft.com/sql/downloads/2000/jdbc.asp.Microsoft licenses MERANT's JDBC driver for SQL Server 2000.
    I cannot comment which one is the best driver. It depends on your project requirements and the buget alloted.
    Hope this helps.
    Good Luck.
    Gayam.Srinivasa Reddy
    Developer Technical Support
    Sun Micro Sysytems
    http://www.sun.com/developers/support/

  • Hi, Can anyone recommended software to import dvd to iMovies. I need to import about a dozen homemade DVD's and edit them into a single DVD comprising the 'best bits'. How best can I do this. I have an external hard drive available for the job

    Hi, Can anyone recommended software to import dvd to iMovies. I need to import about a dozen homemade DVD's and edit them into a single DVD comprising the 'best bits'. How best can I do this. I have an external hard drive available for the job

    You need to convert the VOB files in the TS-Folder of the DVD back to DV which iMovie is designed to handle. For that you need mpegStreamclip:
    http://www.squared5.com/svideo/mpeg-streamclip-mac.html
    which is free, but you must also have the  Apple mpeg2 plugin :
    http://store.apple.com/us/product/D2187Z/A/quicktime-mpeg-2-playback-component-f or-mac-os-x
    (unless you are running Lion in which case see below))
    which is a mere $20.
    Another possibility is to use DVDxDV:
    http://www.dvdxdv.com/NewFolderLookSite/Products/DVDxDV.overview.htm
    which costs $25.
    For the benefit of others who may read this thread:
    Obviously the foregoing only applies to DVDs you have made yourself, or other home-made DVDs that have been given to you. It will NOT work on copy-protected commercial DVDs, which in any case would be illegal.
    And from the TOU of these forums:
    Keep within the Law
    No material may be submitted that is intended to promote or commit an illegal act.
    Do not submit software or descriptions of processes that break or otherwise ‘work around’ digital rights management software or hardware. This includes conversations about ‘ripping’ DVDs or working around FairPlay software used on the iTunes Store.
    If you are running Lion or later:
    From the MPEG Streamclip homepage
    The installer of the MPEG-2 Playback Component may refuse to install the component in Lion. Apple states the component is unnecessary in Lion onwards, however MPEG Streamclip still needs it. See this:
    http://support.apple.com/kb/HT3381
    To install the component in Lion, please download MPEG Streamclip 1.9.3b7 beta above; inside the disk image you will find the Utility MPEG2 Component Lion: use it to install the MPEG-2 Playback Component in Lion. The original installer's disk image (QuickTimeMPEG2.dmg) is required.
    The current versions of MPEG Streamclip cannot take advantage of the built-in MPEG-2 functionality of Lion. For MPEG-2 files you still need to install the QuickTime MPEG-2 Playback Component, which is not preinstalled in Lion. (The same applies to Mountain Lion even though that has it preinstalled.) You don't have to install QuickTime 7.

  • Do we have driver available for Lake Shore Model 128 temperature sensor?

    Do we have driver available for Lake Shore Model 128 temperature sensor? I want to make sure before we start writting our own drivers to communicate with this hardware.
    Thanks,
    Marivell Baez

    Hi Marivell,
    Take a look at ni.com/idnet. A quick browse found Lake Shore Cryotonics Temperature meters here: http://sine.ni.com/idnetwork/main/p/sn/n25:LM/sb/navsRel?q=lake+shore+temperature&x=0&y=0
    This may not be what you are looking for though and consulting with your user manual for the appropriate commands to be sent would get you in the right direction for creating a complete set of Sub-VIs. Is this device a sensor or a meter controlled via an instrument protocol (GPIB, Serial, LAN, etc.)
    PBear
    NI RF

  • Using SQLBindParameter, SQLPrepare and SQLExecute to insert a Decimal(5,3) type fails with SQLSTATE: 22003 using ODBC Driver 11 for SQL Server

    Hello everyone.
    I'm using SQL Server 2014, and writting on some C++ app to query and modify the database. I use the ODBC API.
    I'm stuck on inserting an SQL_NUMERIC_STRUCT value into the database, if the corresponding database-column has a scale set.
    For test-purposes: I have a Table named 'decTable' that has a column 'id' (integer) and a column 'dec' (decimal(5,3))
    In the code I basically do:
    1. Connect to the DB, get the handles, etc.
    2. Use SQLBindParameter to bind a SQL_NUMERIC_STRUCT to a query with parameter markers. Note that I do include the information about precision and scale, something like: SQLBindParameter(hstmt, 2, SQL_PARAM_INPUT, SQL_C_NUMERIC, SQL_NUMERIC, 5, 3, &numStr,
    sizeof(cbNum), &cbNum);
    3. Prepare a Statement to insert values, something like: SQLPrepare(hstmt, L"INSERT INTO decTable (id, dec) values(?, ?)", SQL_NTS);
    4. Set some valid data on the SQL_NUMERIC_STRUCT
    5. Call SQLExecute to execute. But now I get the error:
    SQLSTATE: 22003; nativeErr: 0 Msg: [Microsoft][ODBC Driver 11 for SQL Server]Numeric value out of range
    I dont get it what I am doing wrong. The same code works fine against IBM DB2 and MySql. I also have no problems reading a SQL_NUMERIC_STRUCT using SQLBindCol(..) and the various SQLSetDescField to define the scale and precision.
    Is there a problem in the ODBC Driver of the SQL Server 2014?
    For completeness, here is a working c++ example:
    // InsertNumTest.cpp
    // create database using:
    create a table decTable with an id and a decimal(5,3) column:
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE[dbo].[decTable](
    [id][int] NOT NULL,
    [dec][decimal](5, 3) NULL,
    CONSTRAINT[PK_decTable] PRIMARY KEY CLUSTERED
    [id] ASC
    )WITH(PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON[PRIMARY]
    ) ON[PRIMARY]
    GO
    // Then create an odbc DSN entry that can be used:
    #define DSN L"exOdbc_SqlServer_2014"
    #define USER L"exodbc"
    #define PASS L"testexodbc"
    // system
    #include <iostream>
    #include <tchar.h>
    #include <windows.h>
    // odbc-things
    #include <sql.h>
    #include <sqlext.h>
    #include <sqlucode.h>
    void printErrors(SQLSMALLINT handleType, SQLHANDLE h)
        SQLSMALLINT recNr = 1;
        SQLRETURN ret = SQL_SUCCESS;
        SQLSMALLINT cb = 0;
        SQLWCHAR sqlState[5 + 1];
        SQLINTEGER nativeErr;
        SQLWCHAR msg[SQL_MAX_MESSAGE_LENGTH + 1];
        while (ret == SQL_SUCCESS || ret == SQL_SUCCESS_WITH_INFO)
            msg[0] = 0;
            ret = SQLGetDiagRec(handleType, h, recNr, sqlState, &nativeErr, msg, SQL_MAX_MESSAGE_LENGTH + 1, &cb);
            if (ret == SQL_SUCCESS || ret == SQL_SUCCESS_WITH_INFO)
                std::wcout << L"SQLSTATE: " << sqlState << L"; nativeErr: " << nativeErr << L" Msg: " << msg << std::endl;
            ++recNr;
    void printErrorsAndAbort(SQLSMALLINT handleType, SQLHANDLE h)
        printErrors(handleType, h);
        getchar();
        abort();
    int _tmain(int argc, _TCHAR* argv[])
        SQLHENV henv = SQL_NULL_HENV;
        SQLHDBC hdbc = SQL_NULL_HDBC;
        SQLHSTMT hstmt = SQL_NULL_HSTMT;
        SQLHDESC hdesc = SQL_NULL_HDESC;
        SQLRETURN ret = 0;
        // Connect to DB
        ret = SQLAllocHandle(SQL_HANDLE_ENV, NULL, &henv);
        ret = SQLSetEnvAttr(henv, SQL_ATTR_ODBC_VERSION, (SQLPOINTER)SQL_OV_ODBC3, SQL_IS_INTEGER);
        ret = SQLAllocHandle(SQL_HANDLE_DBC, henv, &hdbc);
        ret = SQLConnect(hdbc, (SQLWCHAR*)DSN, SQL_NTS, USER, SQL_NTS, PASS, SQL_NTS);
        if (!SQL_SUCCEEDED(ret))
            printErrors(SQL_HANDLE_DBC, hdbc);
            getchar();
            return -1;
        ret = SQLAllocHandle(SQL_HANDLE_STMT, hdbc, &hstmt);
        // Bind id as parameter
        SQLINTEGER id = 0;
        SQLINTEGER cbId = 0;
        ret = SQLBindParameter(hstmt, 1, SQL_PARAM_INPUT, SQL_C_SLONG, SQL_INTEGER, 0, 0, &id, sizeof(id), &cbId);
        if (!SQL_SUCCEEDED(ret))
            printErrorsAndAbort(SQL_HANDLE_STMT, hstmt);
        // Bind numStr as Insert-parameter
        SQL_NUMERIC_STRUCT numStr;
        ZeroMemory(&numStr, sizeof(numStr));
        SQLINTEGER cbNum = 0;
        ret = SQLBindParameter(hstmt, 2, SQL_PARAM_INPUT, SQL_C_NUMERIC, SQL_NUMERIC, 5, 3, &numStr, sizeof(cbNum), &cbNum);
        if (!SQL_SUCCEEDED(ret))
            printErrorsAndAbort(SQL_HANDLE_STMT, hstmt);
        // Prepare statement
        ret = SQLPrepare(hstmt, L"INSERT INTO decTable (id, dec) values(?, ?)", SQL_NTS);
        if (!SQL_SUCCEEDED(ret))
            printErrorsAndAbort(SQL_HANDLE_STMT, hstmt);
        // Set some data and execute
        id = 1;
        SQLINTEGER iVal = 12345;
        memcpy(numStr.val, &iVal, sizeof(iVal));
        numStr.precision = 5;
        numStr.scale = 3;
        numStr.sign = 1;
        ret = SQLExecute(hstmt);
        if (!SQL_SUCCEEDED(ret))
            printErrorsAndAbort(SQL_HANDLE_STMT, hstmt);
        getchar();
        return 0;

    This post might help:
    http://msdn.developer-works.com/article/12639498/SQL_C_NUMERIC+data+incorrect+after+insert
    If this is no solution try increasing the decimale number on the SQL server table, if you stille have the same problem after that change the column to a nvarchar and see the actual value that is put through the ODBC connector for SQL.

  • Is there driver available for Yokogawa 2423 thermometer?

    Is there Labview driver available for Yokogawa 2423 Portable Multi Thermometer? Or can I use some other device driver for same purpose? This device is quite old, from late 80's. I would still like to use it with WinXP, Labview 7.1 and rs-232 connection.

    You can search for LabVIEW instrument drivers at the ni.com/idnet Instrument Driver Network. The site has over 3000 instrument drivers and several other resources if you can't find exactly what you are looking for. For instance, you can make a request for a particular instrument driver, or you can view tools on how to create your own.
    I did a quick search for your instrument, but I couldn't find the exact model. However, you may be able to download similar ones from the site that you can modify for your purposes.

  • Vf0040 driver - available for Mac?

    Someone gave us a vf0040 webcam. I don't understand what driver works with it on a pc. I also want to know if there's a driver available for Mac.

    That was an entry level color laser printer that was never designed to work with OS X. However I did find this thread:
    https://discussions.apple.com/thread/1234447?start=0&tstart=0
    Good luck!

  • Is there an external hard drive available for Lion?

    Is there an external hard drive available for Mac  OS X v10.7?

    How big of a drive do you want? Western Digital USB MyPassport drives work great and are inexpensive. You can buy them Mac formatted or just buy one that isn't and use Disk Utilities to format it for a Mac. As far as I know any of the external drives will work with OS X Lion.
    I use a 500GB MyPassport. My MacBook Pro mid-2010 has a 320GB drive and i'm using less than 60GB so the 500GB external is plenty for my back up needs. I use it with Time Machine and SuperDuper! (for bootable images) in Lion.

  • Is there a faster hard drive available for the 1.83Ghz Dual Core MacMini?

    Is there a faster hard drive available for the 1.83Ghz Dual Core MacMini? Since this is the slowest component of the whole system is there a way to upgrade to something faster (possibly a 7200RPM drive)?
    thanks,
    Jeff

    Ways to make it faster:
    1) Be sure you aren't running any Rosetta apps or drivers. Watch out for print drivers. You can use Utilities > Activity Monitor to spot the legacy stuff that uses Rosetta. (Make sure the pop-down menu at the top of the Activity Monitor window says "All Processes", not just "My processes".)
    2) Max your RAM to 2 Gigs. You can't go to 3 Gigs since you only have the CoreDuo CPU.
    3) Whatever hard drive you use, keep at least one-third of it empty. Obviously this will be easier with a large external firewire drive.
    4) 3.5 inch drives will be faster than 2.5 inch drives -- even at the same RPM. So again, external will be the way to go, since Minis can only take 2.5 inch internals.
    If you want an external that stacks under the Mini, some examples are here:
    http://www.123macmini.com/accessories/guide/enclosures.html
    (The NewerTech and WiebeTech models appear to have good reputations, though I have no personal experience with them.)
    But again, all of the factors I mention above will affect performance.

  • Windows Vista 32 bit and also 64 bit driver available for my HP-deskjet 5650 color inkjet ?

    I have an HP-deskjet 5650 printer connected to my desktop pc that is running Windows XP and it prints fine. I have 2-other laptops on same network with Vista-32 bit on one and the newest laptop has Vista-64 bit. When I set up the network print connection by putting in the computer name and then the printer name it says a driver is missing on the server pc,which is actually the XP-desktop. Back on the desktop I made sure the printer was shared for the network. Then it also stated that if I was trying to print from a pc with a different O/S then you must add newer drivers which would have to be Vista.After checking,I dont think any are available for the deskjet-5650. Does anyone have an answer?

    HI,
    The work around that appears to work is to choose the Deskjet 990 driver from the list of printers supplied in the Windows Vista operating system.
    Install the driver
    Install the compatible print driver on the computer.
    Make sure that the USB cable is not connected to the HP product.
    From the Windows taskbar, click the Windows icon (), type control printers in the Start Search box, and then press Enter . The Printers window appears.
    Click Add a printer and then click Add a local printer .
    Click the Use an existing port check box.
    In the Use an existing port drop-down list, select LPT1: (Printer Port) and then click Next .
    Under Manufacturer on the Install the printer driver dialog box, select HP .
    Under Printers , select the Deskjet 990 and then click Next .
    In the Printer name text box, type the HP product name and then click Next . The print driver starts to install.
    NOTE:The name of the alternate print driver appears as the default name. The name can be changed to the name of the HP product, if desired.
    9.      After a message appears on the computer that the product was added successfully, connect the USB cable to the product and to the computer.
    10.  On the Found New Hardware screen, click Cancel .
    NOTE:If multiple pop-up windows appear, click Cancel on each window.
    Say Thanks by clicking the Kudos Star in the post that helped you. Please mark the post that solves your problem as Accepted Solution.
    I am employed by HP

  • ODBC driver hangs for two table joining

    Hi,
    I was trying to access two tables with the following statements. I used Oracle 8 ODBC driver to access Oracle 9 database. Statement 1 and 2 are working fine but executing Statement 3 will hangs the program.
    Statement1: SELECT (fields from two table) from (table1 and table 2) where table1.key=123
    Statement2: SELECT (fields from two table) from (table1 and table 2) where table2.key=345
    Statement3: SELECT (fields from two table) from (table1 and table 2) where table1.key=table2.key
    In the tables 1 and 2 there was no match key, but it should return NULL or nothing.. instead it hangs...
    Anyone encounter this problem before? Thanks a lot for replying me...
    Keith

    Hi,
    I have updated driver to the latest 8.1.7.8.10 which is availiable at the oracle-> download... but the problem still exit... execute sql statment 3 still hangs... :(...
    Thanks for your advice..

  • Is "SCSI Generic" driver available for Solaris 10?

    I just wanted to know whether "SCSI Generic" driver is available for Solaris 10? And if yes then is it freely available?
    weblinks for download would be very much helpful.
    Thanks..

    sgen is the driver that exports the uscsi api. I would presume that uscsi and sg would be similar, but annoyingly different. You can see the uscsi interface here: http://docs.sun.com/app/docs/doc/817-5430/6mksu57l0?l=en&a=view&q=uscsi
    -r

  • Is there noe a windows 7 driver available for the HP 1012 laser printer

    I got mine working on windows 7 with the 1015 driver.  However it acts a little flaky at times.  Mostly I miss two sided copying.  Today I suddenly got a message in my action center tha a driver is available.  Didn't trust link  provided so went to HP page.  Cute, they skipped windows 7 but did develop one for windows 8.  So much for it is too old to be supported.
    Can anyone confirm driver availability?

    Hi,
    I afraid the printer is not compatible with Windows 7, the same by the way also applicable for Windows 8.
    You may find the following chart, any solution is not available for the 1012 model:
    http://h20565.www2.hp.com/portal/site/hpsc/templat​e.PAGE/public/psi/learnUseDisplay/?sp4ts.oid=37793​...
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Largest hard drive available for Mac Book Air

    I have a MacBook air with 120GB SSD drive. I have been running out of space on it for a couple of months now trying to incrementally creating space. I am almost out of space and was wondering if there is a (Apple/non-Apple) hard-drive upgrade option available for Mac Book air. Thanks in advance for your reply.

    Hi,
    Check out this thread.
    http://discussions.apple.com/thread.jspa?threadID=1957930&tstart=0
    Carolyn

  • Is Power Saver driver available for Satellite P200-1FJ

    Is there a Power Saver Utility and driver for Satellite P200-1FJ to extend the battery time or optimize it's performance ?

    Hi
    As Im not completely mistaken the Satellite P200-1FJ must belongs to the PSPB3E series.
    The Toshiba Power Saver is available for the Windows XP OS. I found it on the Toshibas driver website and its actually a 7.03.07C version.
    For Windows Vista OS you will find the Value Added Package. This package contains a TOSHIBA Power Saver. It controls power consumption by switching to optimum power settings, based on whether the machine is plugged in or on battery power, and based on the remaining battery power.
    After the installation of VAP you could find these settings in the Vista power options.
    Check control panel -> Power Options
    On the left you should see a option called Energy save mode. Check it.
    In this mode you could change some power option in change advanced power settings.
    Regards

Maybe you are looking for

  • Empty spaces

    Hi everyone! I need to ensure some columns have null and not empty spaces. I have come up with this method. Would like to know if there is any other way of doing it. update table_temp set columnSample = null where (ascii(columnSample)= 0 and length(c

  • Error in enterprise manager obiee 11g

    hi experts cannot proceed further have a doubt *2.6.3.2Update RPD variables that contain database connection information* when i opened the bi admin tool in offline mode Navigate to Manage>Variables menu, double click on the BI_EE_HOME Repository Var

  • Messages not working on Yosemite

    So I've read through all the threads and everything and I can't figure out how to fix this problem. My messages are not being delivered. Every time I send a message I receive a Not Delivered with an exclamation point. I've deleted all the com.apple.i

  • How do I get past the Mozilla Crash Reporter window?

    I cannot get Firefox to work. Every time I open it a Mozilla Crash Reporter window opens up with the options to Restart or Quit Firefox. Neither of these work. I have the five most recent ID report numbers as suggested in previous posts. Please advis

  • String is too small.

    Hi. I want to concatenate html tags string so my real string getting big. vText := vText || HTF.tabledata(REC.OWNER,'CENTER') || chr(100); Then i want to write vText to html page. Firstly, i must create string that includes all of html codes. vText m