MySQL 5.0 driver  for Hibernate

Hi all,
I try to learn HIbernate, I try the example onhttp://www.roseindia.net/hibernate/runningexample.shtml
and I have Mysql 5.0 install and create adatabase Hibernatetutorial, and table contact ,
but I got error on Cannot open connection
I guess I had mistake on driver
if I don't load mysql-connector-java-5.0.3
what should I do , to build the connection?
Thank you

Hi all,
Thank you for the reply, I use eclipes to run hibernate programmer
I add mysql-connector-java-5.0.3-bin to my lib file then it work.
but I have the following questions
1) <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost/hibernatetutorial</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">mysql</property>
<property name="hibernate.connection.pool_size">10</property>
<property name="show_sql">true</property>
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.hbm2ddl.auto">update</property>
if I add 3306 on it, I know that is the default port I did not change it
how come it not work?
and I found mysql-connector-java-3.1.6-bin.jar and mysql-connector-java-3.0.16-ga-bin.jar if I deleat those two jar file, the whole package not work too ?
Why I need this two jars
thank you

Similar Messages

  • Driver for mysql

    Hy,
    I'm looking for an MySQL ADAPTER JDBC Driver for use with PI7.0 where can I get such a driver?
    Kindly Regards,

    Hi,
    Check the links..
    To install oracle drive in XI server, just check these links,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3867a582-0401-0010-6cbf-9644e49f1a10
    http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html
    http://msdn2.microsoft.com/en-us/library/ms177523.aspx
    /people/bhavesh.kantilal/blog/2006/07/03/jdbc-receiver-adapter--synchronous-select-150-step-by-step
                              JDBC  Receiver with Oracle Stored Procedures
    configuring jdbc adapter with multiple tables
    RFC -> XI -> JDBC Scenario Updating Multiple Tables
    /people/alessandro.berta/blog/2005/10/04/save-time-with-generalized-jdbc-datatypes
    JDBC Adapter multiple Selects
    https://www.sdn.sap.com/irj/sdn/advancedsearch?query=jdbc%20with%20multiple%20tables&cat=sdn_all
    Regards,
    Phani

  • Where can i find mysql Jdbc driver for linux

    Hi all,
    Can any one give urls to download mysql jdbc driver for linux.
    And also for ODBC DRIVER FOR MYSQL ON LINUX.
    Thanks

    http://mmmysql.sourceforge.net/
    (This is a type 4 driver, so "for Linux" is irrelevant.)

  • Help me i need mm.mysql driver for my sql

    i tried to connect my jsp page with mysql database but it is giving me type 4 org.gjt.mm.mysql.Driver error it says that it is not found.
    i went to mysql official site and it is saying that they have finished mm driver and now have made connector j driver for jdbc ....
    my code is this...
    <%
    Class.forName("org.gjt.mm.mysql.Driver");
    Connection myConn= DriverManager.getConnection("jdbc:mysql:///poll?user=123&password=123");
    Statement stmt=myConn.createStatement();
    ResultSet myResultSet=stmt.executeQuery("select * from pollInfo");
    if (myResultSet != null){
    while (myResultSet.next()){
    String name=myResultSet.getString ("pollname");
    String option=myResultSet.getString ("pollOption");
    String votes=myResultSet.getString ("pollvotes");%>
    <tr>
    <td><%=name%></td>
    <td><%=option%></td>
    <td><%=votes%></td>
    </tr>
    <%
    stmt.close();
    myConn.close();
    %>
    here poll is my database name and pollInfo is my table name
    user name and passwords are 123
    and when running it it give me this error.
    >>>>>>>>>>>>>>>>>>>>>
    500 Internal Server Error
    /dbquery.jsp:
    Exception thrown on line '11' from page 'C:\\Program Files\\Allaire\\JRun\\servers\\default\\default-app\\dbquery.jsp'.
    java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver [org.gjt.mm.mysql.Driver]
         at allaire.jrun.servlet.JRunServletLoader.loadClass(../servlet/JRunServletLoader.java:430)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at allaire.jrun.jsp.JSPClassLoader.loadClass(../jsp/JSPClassLoader.java:118)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at jrun__dbquery2ejspc._jspService(jrun__dbquery2ejspc.java:44)
         at allaire.jrun.jsp.HttpJSPServlet.service(../jsp/HttpJSPServlet.java:39)
         at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:228)
         at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:196)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1416)
         at allaire.jrun.session.JRunSessionService.service(../session/JRunSessionService.java:1082)
         at allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:1270)
         at allaire.jrun.servlet.JRunRequestDispatcher.forward(../servlet/JRunRequestDispatcher.java:89)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1552)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1542)
         at allaire.jrun.servlet.JvmContext.dispatch(../servlet/JvmContext.java:364)
         at allaire.jrun.http.WebEndpoint.run(../http/WebEndpoint.java:115)
         at allaire.jrun.ThreadPool.run(../ThreadPool.java:272)
         at allaire.jrun.WorkerThread.run(../WorkerThread.java:75)
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    I am using jrun 3.1 the release of Allair ...
    now any one please help me what to do
    i willl be great ful to all of u very much thanx
    bye

    Hi,
    The driver needs to be on your classpath. So download it to (say C:\jars), what I do is rename it to mysql.jar
    Then add the C:\jars\mysql.jar to the classpath
    If you are using it with tomcat at runtime, which you are probably not, then you could also copy the jar in the tomcat\lib directory - but I have never done this.
    If you are still experiencing problems, open the jar file using winxip or the jar command and make sure that the jar build is exactly as it should be, i.e. the correct names etc.
    best
    kev

  • SQL Server 2000 Driver for JDBC - Error establishing sockets

    Hi there
    I am using Microsoft SQL Server 2000 Driver for JDBC to connect to SQL Sever 2000. It is just a test application to see if it would connect to the datacase successfully. But I got the following errors. I already set up the classpath and installed all SQL Server 2000 Driver for JDBC sp 3. Dont know why it still failed...can anyone help me out of this? Thanks.
    When i am using simple JDBC-ODBC bridge Driver it's working fine.
    For this Server Pack3 , i have checked every thing like--
    TCP / IP Poart is Enable.
    I am working in client machine, my MSSQLServer 2000 Placed in server Machine.
    when i am giving Telnet ServerIP 1433 it's giving following response.
    connecting to ServerIP ....... could not open connection to the host , on port 1433:connection Failed
    My Sample Code is :--
    String user="sa";
    String password="imcindia";
    Connection con1 = null;
    CallableStatement cstmt = null;
    Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();
    con1=DriverManager.getConnection("jdbc:microsoft:sqlserver://ServerName:1433;DatabaseName=dmo1o2d",user,password);
    Statement st=con1.createStatement();
    st.execute("use dm0102d");
    st.execute("setuser 'dm01012'");
    cstmt = con1.prepareCall("{?=Call dms_ex_create_folder('ABC','18753','NB21','u')}");
    cstmt.execute();
    Here are Error Code :
    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)
    java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Connection refused: connect
         at java.sql.DriverManager.getConnection(Unknown Source)
         at TestConnection1.main(TestConnection1.java:24)
    one can help me to over come this problm,
    Thanks in advance.
    venkat

    hey i also have this problem i have been looking for solution for this problem for along time i tried every possible solution i tried every service pack for the SQL but it didn't connect to the port!!!
    it's a network problem ur java code is correct dont worry about it.
    finally i had to install MySQL and it's work fine now but if u insist on usning SQL u have to use the JDBC-ODBC Bridge it will work by :
    first add data source database , follow these steps
    1- go to Administrative tools
    2-Data Sources(ODBC)
    3-System DNS tab and add then choose SQL SERVER the last option then finish
    4-write the name; Note: this name is the one that u will write in ur URL for example if u write Hello the URL will be "jdbc:odbc:Hello"
    5- choose the server, its recommended to write "." or (local)
    6-change the database to its an important step to choose the database that u want to use, choose northwind if u want to use it
    finish
    second
    adding this code:
    import java.sql.*;
    class JdbcTest1 { 
    public static void main (String[] args) { 
    try { 
    // Step 1: Load the JDBC driver.
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    // Step 2: Establish the connection to the database.
    String url = "jdbc:odbc:Hello";
    Connection conn = DriverManager.getConnection(url,"user1","password");
    } catch (Exception e) { 
    System.err.println("Got an exception! ");
    System.err.println(e.getMessage());
    it will work without any problems

  • How do I install the jdbc driver for sql server 2005, in sql developer 4.0 ?

    Hallo together
    I need access to tables in a MS SQL Server 2005 database.
    One possibility is the JDBC driver.
    How do i install this driver ?
    Thank you very much for your postings.

    Hi,
      This is from the documentation -
    Database: Third Party JDBC Drivers
    The Third Party JDBC Drivers pane specifies drivers to be used for connections to third-party (non-Oracle) databases, such as IBM DB2, MySQL, Microsoft SQL Server, or Sybase Adaptive Server. (You do not need to add a driver for connections to Microsoft Access databases.) To add a driver, click Add Entry and select the path for the driver:
    For Microsoft SQL Server or Sybase Adaptive Server: jtds-1.2.jar, which is included in the jtds-1.2-dist.zip download
    To find a specific third-party JDBC driver, see the appropriate website (for example, http://www.mysql.com for the MySQL Connector/J JDBC driver for MySQL, http://jtds.sourceforge.net/ for the jTDS driver for Microsoft SQL Server and Sybase Adaptive Server, or search at http://www.teradata.com/ for the JDBC driver for Teradata). For MySQL, use the MySQL 5.0 driver, not 5.1 or later, with SQL Developer release 1.5.
    You must specify a third-party JDBC driver or install a driver using the Check for Updates feature before you can create a database connection to a third-party database of that associated type. (See the tabs for creating connections to third-party databases in the Create/Edit/Select Database Connection dialog box.)
    Alternative:
    As an alternative to using this preference, you can click Help, then Check for Updates to install the JTDS JDBC Driver for Microsoft SQL Server and the MySQL JDBE Driver as extensions.
    Regards,
    Mike

  • When comes N200 power manager driver for 7? Hotkeys not working without it.

    Hello,
    Will be there release for power manager driver for Windows 7?
    I did install all drivers, could find under download for 7 and infact, without power manager driver hotkeys (sleep, hibernate) on N200 do not work.
    Solved it with installing Vista power manager driver with compatibility mode and bingo, all keys started work and I'm able to sleep/hibernate my laptop.
    Why isn't there driver for 7 if without it things do not fully function?

    try these : 32 bit - 64 bit or try smart downloading

  • 11G ODBC Driver For Linux x86_64

    I've got Oracle Database 11G installed on a machine running Fedora Core.
    I'm trying to find an ODBC driver for it, but I am not seeing anything except for one made by EasySoft that you have to pay for.
    Oracle's documentation claims that they have ODBC drivers, but when I go to the software section all I see is one for 10G that was last updated in 2006.
    Am I just not looking in the right place?
    Thank you.

    Sudheendra,
    Clicking on your link provides a location where the instant client can be downloaded. However, the last x86-64 instant client with ODBC is 10.2.0.4 and (as you have mentioned in other threads) this is not "officially" support. Furthermore, there is a bug in this version that appears when trying to run any query (connect is OK though). So, can't use 10.2.0.4. It appears there are no 11.x versions of the x86-64 instant client that support ODBC.
    So, given an x86-64 system, where everything is running 64-bit, what are we to do with regards to an Oracle Instant Client?
    I have mysql, Teradata and SQL Server all running fine with 64-bit ODBC. Is my only choice to go back to all 32-bit libraries?
    Thanks!
    Keehan

  • 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)

  • Satellite P205-S6237 - Display driver for Windows 7

    When I boot up Windows 7, after the Windows 7 logo my screen goes black. The computer is still on, I just can't see anything. I can access safe mode just fine.
    If I disable the two Mobile Intel 945 Express Chipset Family drivers, I can get into Windows 7 however I can't use hibernate or sleep mode, and the highest resolution is 1280x800. I need a driver that works. Please help me.
    I've downloaded all the drivers and tried them from Toshiba & Intel however none of them work

    Hi buddy,
    Its not a good idea installing all drivers you can find. This could muddle up the operating system and cause such errors.
    Usually the drivers provided on Toshiba page are always work. At the moment I would recommend removing all display drivers that you have installed now (you can do this in safe mode). Then restart your computer (also in safe mode) and run a registry cleaner like CCleaner to remove old registry keys. Restart again and now install the newest Toshiba display driver for your model.
    Your model is listed on Toshiba US page:
    http://www.csd.toshiba.com

  • How can I use one external hard drive for both Time Machine and iPhoto Library?

    I have been using a 1 TG LaCie external hard drive for Time Machine backups.  My (older) Mac has 160 GB and is almost full.  I would like to move my iPhoto Library to the external hard drive, but I've heard Time Machine doesn't share one space well.  Should I
    1.  create another partition (but will this erase what I've already saved) with Disk Utility?  *I am running Snow Leopard*
    2.  create another volume to use for iPhoto, and if so, should the two volumes be of equal size?
    3.  leave it with one partition and move the iPhoto Library to the same partition with Time Machine back ups?
    I know I don't need the entire 1 TG for back up of 160 GBs.  Please advise the best path to take.  Thank you!

    You are getting incorrect information from your ASP. If you look at drive specifications the heat generated is no different for high vs low capacity drives.
    I have upgraded the internal drive in my iMac 2007 with a 3TB Hitachi drive without any heat issues or other problems.
    Larger hard drives have higher density platters so to access any given amount data the drives travel a shorter distance. Higher capacity drives should therefore run cooler than lower density drives because the drive spends less time spinning to access data.

  • Bluetooth Driver for dell(Inspiron N5110(ST: 3v82np1 ) is still not working well.

    Hi,
    I have tried installing "Dell Wireless 1701
    802.11 b/g/n, Bluetooth v3.0+HS Driver "
    But I saw neither wireless nor Bluetooth was defined.
    As  the drivers listed below are only  the driver for wireless and bluetooth, I almost tried all of them, except the last three.
    File TitleImportanceRelease DateVersionActions
    Intel Centrino Wireless-N 1030 WiFi Driver 
    (Driver) 
    Other Formats
    Description
    Intel 6230/N1030/N1000 WiFi Driver for win7 64-bit This package provides the driver for the Intel Centrino Wireless-N 1030 WiFi Driver and imore…
    Intel Centrino Wireless-N 1030/Advanced-N 6230
    Bluetooth Adapter Driver 
    (Driver)
    Description
    This package provides the Intel Centrino Wireless-N 1030/Advanced-N 6230 Bluetooth Adapter Driver and is supported on Inspiron N5110 and Vosmore…
    Dell Wireless 1701 802.11 b/g/n, Bluetooth v3.0+HS
    Driver 
    (Driver)
    Description
    This package provides the Dell Wireless 1701 802.11 b/g/n, Bluetooth v3.0+HS Driver and is supported on Inspiron N5110 and Vostro Notebook 3more…
    Dell Wireless 1702 WiFi + Bluetooth Driver 
    (Driver)
    s
    Description
    This package provides the Dell Wireless 1702 802.11 b/g/n, Bluetooth 3.0+HS Driver and is supported on Inspiron and Vostro Notebook models tmore…
    Intel Centrino Wireless-N 1000, Centrino Advanced-N
    6230, Centrino Wireless-N 1030, v.14.2.0.10, A01 
    (Driver)
    Recommended
    Description
    This package provides the Intel Centrino Wireless-N 1000/1030, Advanced-N 6230 Driver and is supported on Inspiron N5110 and Vostro Notebook more…
    Intel Centrino Advanced-N 6230/Wireless-N 1030
    Bluetooth Adapter Driver 
    (Driver)
    Description
    This package provides the Intel Centrino Advanced-N 6230/Wireless-N 1030 Bluetooth Adapter Driver and is supported on Inspiron N5110 and Vosmore…
    Add to My Download List
    Dell Wireless WLAN 1502 Half Mini-Card Driver 
    (Driver)
    Description
    This package provides the driver for Dell Wireless WLAN 1502 Half Mini-Card and is supported on Inspiron Notebook and Vostro Notebook modelmore
    Intel WiMax Link 6150 Driver 
    (Driver)
    Description
    This package provides the Intel WiMax Link 6150 Driver and is supported on Inspirion and XPS Notebook models that are running the following
    Realtek RTL8111E-VB Gigabit and RTL8105E-VB 10/100
    Ethernet Controller Driver 
    (Driver)
    Description
    This package provides the Realtek RTL8111E-VB Gigabit and RTL8105E-VB 10/100 Ethernet Controller Driver and is supported on Inspiron N5110 amore…
    I had to install Dell Wireless 1702 WiFi +
    Bluetooth Driver
    The wireless adapter was defined by this driver, however, the Bluetooth still has an exclamation mark in front of it, and when the Dell WLAN and Bluetooth client installation finished, a pop up message said that Windows couldn't install the device
    well, although there was a folder added in documents folder named 'Bluetooth Folder'
    Yes, the Bluetooth was named with 'Generic Bluetooth adapter' before installing 'Driver above'. However, after installing the driver above, the Bluetooth adapter named with ' Dell wireless 1702 Bluetooth v3.0". But as you see it's
    still not working will.
    The sceen shot shows the device manger before installing  Dell
    Wireless 1702 WiFi + Bluetooth Driver
    These screen shots shows the device manger after installing  Dell
    Wireless 1702 WiFi + Bluetooth Driver
    I've lit windows detect the operating program for this device on the internet, it said "Windows has detected that the operating  program of this device is up to date. As this screenshot shows.
    What should I do because nothing lift to try? If you have a look at the ninth drivers in my previous message, you will see that no other drivers for Bluetooth lift.
    Also, I have tried  to install Intel
    Centrino Wireless-N 1030 WiFi Driver 
    But I have been told that "the installation is blocked', This package of installation cannot be installed on your system' I don't know what this
    means, is it because Dell Wireless 1702 WiFi +
    Bluetooth Driver is being installed
    Could you please take some of your preciout time out to read carefully my points below to finish this problem?
    first:
    Yes, if you had a look at my first post, you would have seen that I really have downloaded and installed the drivers suitable for bluetooth, which was only Dell
    Wireless 1702 WiFi + Bluetooth Driver, which made the bluetooth recognized by Windows 7(64Bit). However, the bluetooth in the device manager still has an exclamation mark as it is shown in the device manager.
    I don't have any other drviers which can do more than the what Dell
    Wireless 1702 WiFi + Bluetooth Driver did because I have tried all the drivers listed under 'Network', exept the what are for Etherent.
    Yes, when I have tried adding the bluetooth between two laptops(Mohammad and Nasreen).  the bluetooth was added for both laptops as you see in these screenshots below:
    The Bluetooth devices of Nasreen's laptop whose bluetooth is having some problems in Device mangage.
    The Bluetooth devices of Mohammad's laptop  whosse Bluetooh is defined well in device manager.
    But there is still problem in the device managre as shown in the screenshot listed before.
    Second: (Important) That when I want to send files or recieving between two bluetooth added in either laptop, I could send them. Also, when I open the Mohammad's bluetooth added in Nansreen's laptop( screenshot
    below), I can show what is inside it.
     However, when I open the the Nasreen's bluetooth addd in Mohammad's laptop, I noticed  no reponse at all because as you see that disconnected is written in fornt "Nasreen-Pc" as this screenshot: 
    Although sometimes Nasreen-Pc gets connected as screenshot below, but I am still not able to open the Bluetooth folder of Nasreen-pc from Mohammad-pc. When trying to do that, no response is there.
    In other times, Nasreen-pc gets connected for a while, but it comes back disconnected.
    Third:: I noticed that the name of Laptop whose Bluetooth was added listed in 'My computer' for the laptop whose Bluetooth is having some problems in the device manager.(First Screen shot below)  However,
    the name of the laptop whose Bluetooth is having problems wasn't listed on other laptop's "my computer"(Second Screen shot below)
    Finally: : when I clicked "right-click" on "Nasreen-PC" and then clicking on "detecting and troublshooting issues", I found that windows informed me that :
    But which driver should I reinstall because I have already installed the Dell
    Wireless 1702 WiFi + Bluetooth Driver almost twice?
    A man should convert his anger and sadness into strength to continue living in this life.

    Certain driver packages contain drivers from some of the essential services only and for additional services, separate drivers must be installed. Additionally, the service is installed only if a compatible device is installed (or paired).
    Therefore, you are seeing the error.
    If you are using the Bluetooth L2CAP Interface and Bluetooth Remote Control services and not able to install the services, you can try unpairing the device, restart the PC, pair the device and then check. If that too fails, you need to install a suitable
    driver, sometimes even other OEM drivers solve the issue. You can Bing/Google about this. You can also contact Dell Support for more information.
    Balaji Kundalam
    Thanks a lot,
    I really didn't understand what you mean with in your first part the service is installed only if a compatible device is installed (or paired).
    The Bluetooth is integrated with
    the laptop, then  where other services will come from, all service are related to Bluetooth.
    If there are some additional services not related to Bluetooth,
    then how can I either let them functioning well or disable them in order to get rid of the yellow exclamation mark
    on the name of my laptop in the Device and printers.
    Also, I really have installed a
    BCBT7(Broadcom Bluetooth) for HP which really defined the same Bluetooth issue,
    Device manager after installing the entire setup of driver BCBT7(Broadcom Bluetooth) on HP laptop
    but  when trying to install the same
     BCBT7(Broadcom Bluetooth)  on Dell,  I faced the error below, although there is an icon for Bluetooth in
    the system tray. Also, the Bluetooth is integrated as
    you have seen in the device manager. 
    You didn't answer me: Third:: I noticed that the name of Laptop whose Bluetooth was added listed in 'My computer' for the laptop whose
    Bluetooth is having some problems in the device manager.(First Screen shot below)  However, the name of the laptop whose Bluetooth is having problems wasn't listed on other laptop's "my computer"(Second Screen shot below)
    A man should convert his anger and sadness into strength to continue living in this life.

  • Tiger OSX Driver for eMagic AMT-8 - AMT no longer seen in AudioMidi

    Can anyone here tell me where to find the driver for the AMT-8? It seems "missing" from the Apple and Emagic websites. AudioMidi is still not seeing the interface although "About this Mac" sees it just fine.
    Also, no driver for it in the Library like my other interfaces.
    All previous links to the driver are no longer valid.
    Thanks!
    Matt @ Post Pro
    [email protected]

    That link to the Apple site I've looked at a hundred times. You know, if I look one more time MAYBE it will be there this time. The ONLY one I've seen on there that is close is the Unitor Command software, but that's not quite it. Is it hiding in one of the other 3 folders and I'm just too blind to see it?
    If you can email it to me that would be great. Just use the: "[email protected]" address so that I can grab it on the road easier.
    Thanks Much!
    Matt @ Post Pro

  • Where can I download a Windows 7 64bit driver for the hp CDDVDW TS-L633N on my cpq60-615DX

    EDIT --
    I neglected to say that I tried updating the driver from the Device Manager device window and the result was a message saying it could not find a newer driver, that the one installed was correct.
    Another EDIT
    I also did not say that I  have uninstalled the device, through Device Manager. Upon restarting the system, the drive was found and software installed but the problem remains.
    Original message follows:
    System: CPQ60-615DX
    Windows 7 Home Premium 64bit
    Drive: hp CDDVDW TS-L633N
    In the process of installing some Roxio software, Creator 9, an unusable driver, are part of one, was installed. Now the device is not working.
    When I didn't see on the list of devices on Windows Explorer, I went to Device Manager and found that it was flagged with the "problem" icon (exclamation  point on a yellow background).
    The General Tab Device Status box contains"
    A driver (service) for this device has been disabled.  An alternate driver may be providing this functionality. (Code 32)
    The following information is shown for the device:
    hp CDDVDW TS-L633N ATA Device Properties windo
    Driver Tab:
    hp CDDVDW TS-L633N ATA Device
    Driver Provider: Microsoft
    Driver Date:     6/21/2006
    Driver Version:  6.1.7601.17514
    Digtal Signer:   Microsoft Windows
    Driver File Details:
    hp CDDVDW TS-L633N ATA Device
    Driver files: c:\Windows\system32\Drivers\cdrom.sys
    Provider:         Microsoft Corporation
    File Version:     6.1.7600.16385 (win7_rtm.090713-1255)
    Copyright:        Microsoft Corporation. All rights reserved.
    Digital Signer:   Microsoft Windows
    c:\Windows\System32Drivers\PxHlpa64.sys
    Provider:         Sonic Solutions
    File version:     2.03.27a
    Copyright:        Copyright 2003 Sonic Software
    Digital Signer:   Not digitally signed
    It appears that the Creator install installed part of the driver but not one that functions. It might be a problem with Windows 7 or the fact that this install is 64 bits.
    I have searched the HP site and can't find a driver for the device. When I look at the list of drivers available for this system, the optical drive is not shown.
    I downloaded and installed the HP driver search program - or whatever it is called - and ran it. There were no devices listed on "Optical Drive" tab when I looked at the results - it could not "see" the drive.
    I realize that what I need is probably a generic driver from MS, that's why one is not shown on the HP site, but how do I go about finding the right one for this device?
    Is there a generic "one size fits all" driver for Windows 7 which can drive this device?
    Any assistance will be greatly appreciated.
    Bob and Simon
    This question was solved.
    View Solution.

    HI nhgfdstr:
    Thank you for your inquiry.  I am pleased to assist  you!!
    I am sending you a link to a "CD/DVD Drive Is Not Detected (Windows 7)"  click here.  For your convenience here is a document on "Downloading or Updating Software and Drivers for HP Computers"   click here.   I am also sending  you  a link, to third party site, with a driver for your hp CDDVDW TS-L633N ,  " Hp CDDVDW TS-L633N ATA Device Drivers Download"  click here.
    Happy Holidays!!!
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • I would like to know if you have to back up a macbook hard drive, can I use a external hard drive that has been previously used to back up several pc 's, or is it best to have a separate external drive for the Mac?

    I would like to know if you have to back up a macbook hard drive, can I use a external hard drive that has been previously used to back up several pc 's, or is it best to have a separate external drive for the Mac?

    In the Mac side of things, backups usually come in two flavors: clones or incrementals.
    A bootable clone is a bit-for-bit copy of all essential files in the startup volume. If using the Lions, clones can be made using CarbonCopyCloner or just plain old Disk Utility. These backups represent the safest protection of your info, but take the longest to do. Recovery is an inverse process: you copy the clone back into the internal drive.
    Incremental backups start with a complete backup of the startup volume and only copy whatever changed from the previous run. OS X includes the fully integrated Time Machine backup utility to do this. It is extremely easy to do and takes the least amount of time. Recovery is another matter altogether since you have to start with a freshly installed instance of the OS and have to apply all intervening backups to bring the result to the latest saved version.
    As for where the backup takes place, the recommended media is an external dedicated drive or drives connected via the fastest interface available on your Mac: Thunderbolt, USB3, Firewire, or USB2. Network-based backups, wired or wireless, are attractive but may not offer the same performance and hence take longer. Also important to note that the entire drive need not be completely dedicated to a single backup. The Mac's EFI firmware infrastructure allows for an unlimited number of partitions on a hard drive and each can be used for either type of backups.
    Holler if you need specifics on how to do each. This was just an executive summary.

Maybe you are looking for

  • Problems with repainting in new JD 9.0.4.0

    I just installed new JD 9.0.4.0 . I think that from this moment I have problems with painting java graphics objects (for example Application Module tests or simple login dialogs). When I move that window, its remains are left on the screen until I ov

  • Over riding methods

    So i have an abstract class called Person which has a toString method in it as so      public String toString()           String persDetails = "First Name: " + firstName +"\n" +                                    "Last Name: " + lastName +"\n";      

  • Password lock only when lid is closed.

    Hi, I have a MacBook. I am trying to find a way so that the computer prompts me for a password only when i close the lid . Not everytime the monitor goes into screensaver or sleep mode. I have looked for a solution for this all over the web, and it j

  • Selecting Randoms from Query of Queries

    I can create a query that selects random records <cfquery....> select top 10 * from table order by newid() <!--- SQL Server ---> </cfquery> or <cfquery....> select top 10 * from table order by rand() limit 10 <!--- MySQL---> </cfquery> However, is th

  • Locks as answer to shared resource

    I post this in hopes someone can help me see the light! I have written some code that uses locks (read,write locks) to help solve shared access to a file. The code is better served in a later iteration where the values are not stored in a file. Putti