Very new trying to make first connection to datbase

I just downloaded Oracle JDeveloper.
I have sample code from professor of connecting to a database used only for our course.
I think my "make" or compiler is comiling in the wrong location. How do I make it point to the right location?
When the professor ran the code in class he got the following:
C:\Jdevjdk\bin\javaw.exe
I got.
C:\jdk\jre\bin\java.exe -jar C:\jdev\lib\ojc.jar
My Jdeveloper was unzipped in the C:\.
// FirstConnection.java
// Spring 2011
package makedatabaseconnection;
// Import the needed package
import java.sql.*;
public class FirstConnection {
// Basic setup of a database connection (no statements issued)
// Not handling exceptions, if none are thrown then we are successful
public static void main(String[] args) throws ClassNotFoundException,
SQLException {
System.out.println("Creating connection to database...");
// Load the driver
Class.forName("oracle.jdbc.OracleDriver");
// Make the connection
// (You would of course use your own cdmoracle username and password)
Connection c =
DriverManager.getConnection("jdbc:oracle:thin:@cdmoracle.cti.****.edu:1521:def",
               "fake username", "fake password");
// Close the connection
c.close();
System.out.println("Done!");
Once I can connect, run the few sample code example, the rest should be pretty east.
Thanks for your help.

Here is the error message:
Make (or complie)
Compiling...
C:\jdk\jre\bin\java.exe -jar C:\jdev\lib\ojc.jar -source 1.5 -target 1.5 -noquiet -warn -nowarn:320 -nowarn:486 -nowarn:487 -deprecation:self -nowarn:560 -nowarn:704 -nowarn:489 -nowarn:415 -nowarn:909 -nowarn:412 -nowarn:414 -nowarn:561 -nowarn:376 -nowarn:371 -nowarn:558 -nowarn:375 -nowarn:413 -nowarn:377 -nowarn:372 -nowarn:557 -nowarn:556 -nowarn:559 -encoding Cp1252 -g -d C:\ME\makedatabaseconnection\classes -make C:\ME\makedatabaseconnection\classes\makedatabaseconnection.cdi -classpath C:\jdk\jre\lib\rt.jar;C:\jdk\jre\lib\i18n.jar;C:\jdk\jre\lib\sunrsasign.jar;C:\jdk\jre\lib\jsse.jar;C:\jdk\jre\lib\jce.jar;C:\jdk\jre\lib\charsets.jar;C:\jdk\jre\classes;C:\ME\makedatabaseconnection\classes -sourcepath C:\ME\makedatabaseconnection\src;C:\jdk\src.zip C:\ME\makedatabaseconnection\src\makedatabaseconnection\FirstConnection.java
[4:56:22 PM] Successful compilation: 0 errors, 0 warnings.
Compiling...
C:\jdk\jre\bin\java.exe -jar C:\jdev\lib\ojc.jar -source 1.5 -target 1.5 -noquiet -warn -nowarn:320 -nowarn:486 -nowarn:487 -deprecation:self -nowarn:560 -nowarn:704 -nowarn:489 -nowarn:415 -nowarn:909 -nowarn:412 -nowarn:414 -nowarn:561 -nowarn:376 -nowarn:371 -nowarn:558 -nowarn:375 -nowarn:413 -nowarn:377 -nowarn:372 -nowarn:557 -nowarn:556 -nowarn:559 -encoding Cp1252 -g -d C:\ME\makedatabaseconnection\classes -make C:\ME\makedatabaseconnection\classes\makedatabaseconnection.cdi -classpath C:\jdk\jre\lib\rt.jar;C:\jdk\jre\lib\i18n.jar;C:\jdk\jre\lib\sunrsasign.jar;C:\jdk\jre\lib\jsse.jar;C:\jdk\jre\lib\jce.jar;C:\jdk\jre\lib\charsets.jar;C:\jdk\jre\classes;C:\ME\makedatabaseconnection\classes -sourcepath C:\ME\makedatabaseconnection\src;C:\jdk\src.zip C:\ME\makedatabaseconnection\src\makedatabaseconnection\FirstConnection.java
[4:56:26 PM] Successful compilation: 0 errors, 0 warnings.
Run time error:
C:\jdk\bin\javaw.exe -client -classpath C:\Carrara\makedatabaseconnection\classes makedatabaseconnection.FirstConnection
Creating connection to database...
Exception in thread "main" java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver
     at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
     at java.security.AccessController.doPrivileged(Native Method)
     at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
     at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
     at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
     at java.lang.Class.forName0(Native Method)
     at java.lang.Class.forName(Class.java:164)
     at makedatabaseconnection.FirstConnection.main(FirstConnection.java:21)
Process exited with exit code 1.
I think the error is due to where I have all the background stuff linking to Jdeveloper. Basically I think I installed it incorrectly, or to a bad location.
Edited by: SillyDB on May 22, 2011 2:01 PM

Similar Messages

  • Error: there is a problem connection to the GPRS service in your registered home network, error trying to make data connection. this may be casued by a voice call, a wired activesync connection or inncorrect network setting

    like 2 weeks ago i called in to att to see how much is the data plan and it would end up costing $30.
    so i was like screw that. well they figured that i got a new phone replacing the LG shine. so they asked
    for to call this number so they can recieve data which would updated the system that i have a plam treo 750.
    ever since this conflict i can't send picture messages. i get that problem. everytime i attempt to send a picture
    i recieve this.
    - there is a problem connection to the GPRS service in your registered home network.
    - then i get a test that says error trying to make data connection. this may be casued by a voice call,
    a wired activesync connection or inncorrect network setting.
    please someone help me.
    btw. hard reset and soft reset did not work for me.
    Post relates to: Treo 750 (AT&T)

    problem fix, i had to call in. customer serivce. and when i called to ask about the plan. they blocked it. so i had to unblock my internet.
    Post relates to: Treo 750 (AT&T)

  • Trying To make DB connection using DataSource

    Hi ,
    I am working on Jdev 11g . Getting exception while trying to execute below code:
    import java.sql.*;
    import java.util.Hashtable;
    import javax.naming.*;
    import javax.sql.*;
    final class GetConnection {
    /** Uses JNDI and Datasource (preferred style). */
    static Connection getJNDIConnection(){
    // String DATASOURCE_CONTEXT = "java:comp/env/jdbc/blah";
    String DATASOURCE_CONTEXT = "JNDIDataSource-0";
    // String DATASOURCE_CONTEXT = "TESTJNDI_CONN";
    System.out.println("Control till here :1");
    Connection result = null;
    try {
    Context initialContext = new InitialContext();
    if ( initialContext == null){
    System.out.println("JNDI problem. Cannot get InitialContext.");
    System.out.println("Control till here :2");
    Hashtable<String, String> table = new Hashtable<String, String>();
    System.out.println("Here");
    table.put(Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory");
    System.out.println("Control till here :3");
    table.put(Context.PROVIDER_URL, "hostName");
    System.out.println("Control till here :4");
    table.put(Context.SECURITY_PRINCIPAL, "weblogic");
    System.out.println("Control till here :5");
    table.put(Context.SECURITY_CREDENTIALS, "weblogic123");
    System.out.println("Control till here :6");
    initialContext = new InitialContext(table);
    System.out.println("Control till here :7");
    initialContext = new InitialContext(table);
    System.out.println("Control till here :8");
    DataSource datasource = (DataSource)initialContext.lookup(DATASOURCE_CONTEXT);
    DataSource source = (DataSource)new InitialContext().lookup("DataSource");
    // result = source.getConnection();
    System.out.println("Control till here :9");
    if (datasource != null) {
    System.out.println("Control till here :3");
    result = datasource.getConnection();
    System.out.println("Control till here :4");
    else {
    System.out.println("Failed to lookup datasource.");
    catch ( NamingException ex ) {
    System.out.println("Cannot get connection: 1" + ex);
    catch(SQLException ex){
    System.out.println("Cannot get connection: 2" + ex);
    return result;
    public static void main(String[] args) throws Exception {
    //WBSCallingProc WbsProc = new WBSCallingProc();
    String returnValue;
    GetConnection getConnection = new GetConnection();
    // returnValue =home.callingProcedure();
    Connection returnValue1 =getConnection.getJNDIConnection();
    System.out.println("returnValue1 " + returnValue1);
    Log
    Control till here :1
    Control till here :2
    Here
    Control till here :3
    Control till here :4
    Control till here :5
    Control till here :6
    Cannot get connection: 1javax.naming.NamingException: String index out of range: -1
    returnValue1 null
    Can anyone please help me here.Many Thanks.
    Regards
    Kumar

    What is the full Java and os versions you are using to compile and to run. Note that with JDEV the platform used for your code may be different than the platform used by JDEV itself.
    Please modify all of your exception handlers to print the stack trace. Add this as the first line in each handler.
    ex.printStackTrace();The stacktrace contains important information about where the problem really occured.
    See the Java docs for NamingException - http://docs.oracle.com/javase/6/docs/api/javax/naming/NamingException.html
    >
    This is the superclass of all exceptions thrown by operations in the Context and DirContext interfaces. The nature of the failure is described by the name of the subclass. This exception captures the information pinpointing where the operation failed, such as where resolution last proceeded to.
    •Resolved Name. Portion of name that has been resolved.
    •Resolved Object. Object to which resolution of name proceeded.
    •Remaining Name. Portion of name that has not been resolved.
    •Explanation. Detail explaining why name resolution failed.
    •Root Exception. The exception that caused this naming exception to be thrown.

  • Not-identified error when trying to make a connection in CS4

    Hello;
    When I try to make a Db connection to mysql in DW CS4,using connections,the +-button and fill in the pop up,I am getting the following message:
    "a not-identified error has occurred".
    The database name,password and all the other information is ok.So I really do not know what is happening.
    Is there someone there who has an answer for this problem??
    many thanks for the help!

    Igorbuitendijk wrote:
    The testing serverfolder is:http://www.checksite.eu:2222/public_htmlThe URL prefix is:http://www.checksite.eu:2222/public_html
    When I leave out the 2222,Dreamweaver can't make a connection to the server.
    I don't know about the use of port 2222, but your testing server definition is completely wrong.
    The testing server folder must be a physical path, not a URL. And the URL prefix must be a valid URL. public_html is the name of the web server's document root, it should never be part of a URL.
    Judging from the details you have given here, you are using your remote server for testing. In the Testing server section of the site definition, set Access to FTP. The value of Host directory should be what your hosting company tells you to use when logging in. For some hosting companies, you use public_html on its own. Other companies tell you to leave the value blank or to use just /.
    The URL prefix is just the URL for the site.

  • I have the latest version of itunes and a very new computer and a stable connection. Why does iTunes refuse to connect to the appointment store? I have tried the standard fixes but nothing helps

    I have the latest version of iTunes. Whenever I click on the iTunes store section on iTunes the loading bar reaches half-way then stops. I can access my acount on my ipod touch however. i have tried reinstalling itunes but no help. I do have an internet filter but it is not doing any pop-ups(as it always does when it blocks content) so I am very sure that is not the problem.

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • New Update Only Make Internet Connection Problem Worse?

    Since getting this thing, I've had the same random internet drop issues alot of people have reported. It was annoying but not unbearable as drops only happened a couple of times a day. Yesterday I anxiously ran both the OS and Time Capsule updates hoping this lingering issue would have finally been addressed, instead those, I am now lucky to maintain net connection for more than 5 minute at a time. My modem (Moto 2210) lights are all as should be and show no status change when dropped, but the airport status has the time freeze and within a minute or two it renegotiates the connection and the cycle repeats.
    I am so annoyed with this thing. I jumped from PC to Mac about 6 months ago because of the notion that Mac stuff "just works" and while my notebook has been bulletproof, the Time Capsule (dropped twice while typing this message) and AppleTV leave a great deal to be desired at this point.

    The concept of Mac " JUST WORKS" is still very much true. As for Time Capsule. I think its something that Apple need to refine it. It is really making my hair white !!
    But I still like it!! haha.. The idea, the concept and the look !! Apple just need to tweak its stability.

  • Re4000w drops when trying to make initial connection to existing network

    I am trying to set up a re4000w for a friend.
    I am attempting setup through the browser, connecting to 192.168.1.1. No issues seeing their existing network, I am able to connect and enter a p/w and the device will attempt to connect to the exisiting AP. However, after 10 seconds or so, the connection completely drops and the default extender SSID dissapears and does not reappear. The browser window goes white. 
    I have hard reset numerous times.  It was already runing 1.0 but I refreshed it. I have taken the device out of their home, and attempted to set up ay my own place and the same exact behavior takes place. 
    I know that the default gateway ay my place is 192.168.1.1, could this be creating some sort of comflict since the extender has the same default IP? I would think that once connected, the re4000w would grab a IP from the existing router and disable it own DHCP server. 
    Any ideas? Thanks

    If you configured the RE to extend an exiting wireless signal, once configured it will drop it's default signal and start broadcasting the SSID it was configure to extend.
    After the RE is configured the only thing you will notice on your wireless device is an increase signal for the extended SSID.
    Have you used a extender as a repeater before or have they all been hard wired to the router as an AP?
    Please remember to Kudo those that help you.
    Linksys
    Communities Technical Support

  • How to make the connection between a sale order and an invoice in SDK

    Hi,
    Im trying to make the connection between a sales order and an invoice using the SDK.
    Here is how i create each of them:
    Invoice:
    public int SalesInvoiceInternalSave(string buisnesspartnerCardCode, DateTime dueDate, double discountPercent, string id, IList<InternalItem> items, ref int invoiceId)
          int res = 0;
          SAPbobsCOM.Documents invoice_entry = (SAPbobsCOM.Documents)Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices);     
          invoice_entry.CardCode = buisnesspartnerCardCode;
          invoice_entry.DocDueDate = dueDate;
          invoice_entry.DiscountPercent = discountPercent;
          invoice_entry.Reference2 = id;
          foreach (InternalItem item in items)
            invoice_entry.Lines.WarehouseCode = item.Shopid;
            invoice_entry.Lines.ItemCode = item.Code;
            invoice_entry.Lines.ItemDescription = item.Name;
            invoice_entry.Lines.Quantity = item.Quantity;
            invoice_entry.Lines.UnitPrice = item.Price;
            invoice_entry.Lines.Add();
          res = invoice_entry.Add();
          return res;
    Sales order:
        public Boolean SalesOrderInternalSave(string orderId, string buisnesspartnerCardCode, DateTime dueDate, IList<InternalItem> items)
          SAPbobsCOM.Documents order_entry = (SAPbobsCOM.Documents)Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders);
          order_entry.CardCode = buisnesspartnerCardCode;
          order_entry.DocDueDate = dueDate;
          foreach (InternalItem item in items)
            order_entry.Lines.WarehouseCode = item.Shopid;
            order_entry.Lines.ItemCode = item.Code;
            order_entry.Lines.ItemDescription = item.Name;
            order_entry.Lines.Quantity = item.Quantity;
            order_entry.Lines.UnitPrice = item.Price;
            order_entry.Lines.Add();      
          int res = order_entry.Add();
          return res == 0;
    What do i need to change to get the connection between the two of them?
    And how do you insert a amount (not percent) discount into an invoice?
    Regards,
    Torben

    Hi,
    Add the sale order, then add the invoice. and while adding the invoice please add the following details to the invoce documen
    invoice_entry.Lines.BaseEntry = 'Doc entry of the newly created SO
    invoice_entry.Lines.BaseLine = 'Line No of the SO
    invoice_entry.Lines.BaseType = 17 'For sales order document type.
    Hope it helps,
    Vasu Natari.

  • Very new to photoshop I am trying to make changes to a photo and set it up as a smart object but after selecting smart object, the checkerboard appears and my photo dissppears

    Very new to photoshop I am trying to make changes to a photo and set it up as a smart object but after selecting smart object, the checkerboard appears and my photo dissppears

    Hello, thank you so much for your response! Here are some screenshots of my steps taken

  • HT1296 igotmy sisters iphone 4 and imtrying tosynctomyitunes butits telling me i need to connect to her computer and im trying to make my comp the new primary

    igotmy sisters iphone 4 and imtrying tosynctomyitunes butits telling me i need to connect to her computer and im trying to make my comp the new primary

    I suggest you make this your own iPhone by erasing everything on it. You will lose everything and have to start over.
    Settings > General > Reset > Erase all content and settings

  • I just got a new iMac yesterday. I connected my Itouch and it would appear I have lost all my songs! Can anyone help? This is my first Mac and I am very intimidated by it.I

    I just got a new iMac yesterday. I connected my Itouch and it would appear I have lost all my songs! Can anyone help? This is my first Mac and I am very intimidated by it.I

    How did you get your songs onto your iPod Touch?
    If purchase directly from iTunes you can download them again.
    If your iPod is synced to iTunes on a Windows PC, then, sync your iPod to that computer.
    If this is your first Mac, are you migrating from a Windows PC?
    You may be interested in Apple's support pages on switching to Mac from PC.
    http://www.apple.com/support/switch101/

  • Just hooked up new apple tv for first time. able to connect to internet (netflix, youtube) but not able to connect to my itunes account via home sharing. apple tv tells me to make sure computer's itunes has home-sharing enabled, which it does. any advice?

    Just hooked up new apple tv for first time. able to connect to internet (netflix, youtube) but not able to connect to my itunes account via home sharing. apple tv tells me to make sure computer's itunes has home-sharing enabled, which it does. any advice?

    Have done both suggestions, still not working. Could it have somehting to do with my local network? I am using a wireless Internet provided by my apartment building so not sure if apple tv and my computer are not technically on the same "local network?"
    apple tv and main computer are connecting to Internet fine. Just cannot see my itunes on apple tv.
    any other advice? My itunes is turned on to home sharing. i entered the same apple itunes account into aple tv. but appletv keeps saying my computer's home sharing is not turned on...but it is.

  • My itunes is on an old computer.  So old that I can't update it and so Haven't used it in two years.  How can I move it to my new laptop and make sure this doesn't happen again?  Very frustrated that I've spend $$ but can't get my music.

    My itunes is on an old computer.  So old that I can't update it and so Haven't used it in two years.  How can I move it to my new laptop and make sure this doesn't happen again?  Very frustrated that I've spend $$ but can't get my music.
    I want so set up itunes on my laptop and make sure that I get all of my old music and any music shared from my sons' itunes accounts.  Do I have to set up itunes on my new laptop first and then use the same logins?  Really concerned about losing any music, etc.

    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    Note if you have failed to move contacts and calendar items across you should create one dummy entry of each in your new profile and iTunes should  merge the existing data from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library or a backup then then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • I tried to make a second library, but my first one was deleted so I did it again but now I have doubles of every song. How do I restore my itunes back to the way it was before I tried to make a 2nd library?

    Like I said I tryed to make another library, I did what Itunes told me to do but it only erased the library I had and made a new one. So I did it again but I now have duplicates of every song. How do I get my it back to the way it was, before I tried to make a second library?

    C:\Users\Cheye\Music\iTunes should be the original library. You should be able to connect to it as follows.
    Close iTunes, wait a few seconds, click the icon that starts iTunes and immediately press and hold down the shift key. Keep holding until asked to choose or create a library. Click choose and browse to the file C:\Users\Cheye\Music\iTunes\iTunes Library.itl.
    Depending upon exactly what you did this has either restored your library, or done absolutely nothing at all. That was the reason for asking you to check using the script.
    Assuming you still have a library full of dupes there are a number of ways to go. I've written a script called DeDuper which can help remove unwanted duplicates which I discuss in some detail in this  thread. While it should work it will be ideal if it discards the copies that are outside the media folder C:\Users\Cheye\Music\iTunes\iTunes\iTunes Media. I've a feeling it will do exactly that, but it depends in part on exactly you got into this mess. It would be worth doing a few sample runs of just a few sets of duplicate files first.
    tt2

  • New Ipad 2 having problems connecting to Wifi - Tried Everything

    Tried to set up my new ipad this morning and connected to Wifi fine. Played on it for 10 mins and then it dropped the Wifi connection. Tried everthing to get it going rebooting, restoring network setting etc etc. After 30mins of trying the wifi section in settings went grey and you could not click on it anymore.
    Did a complete restore through itunes and managed to get the wifi connection working again but the same thing happened again after 10 mins.
    We have looked at all the different channels on the router and selected the highest signal strength which made no difference.
    Very fustrating day, both out blackberrys work on UMA through router,mums and brother iphones both connect to router ok, mac connects ok and my pc connects fine. Please could someone help me before i have a nervous breakdown. Have spent all day trying to get it work and still seem to be a million miles off getting it to work!!!!!!!!!!!!!!!!!!

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router. Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

Maybe you are looking for

  • Error while adding item

    hi all,          Whenever i add new item it gives error "Variation between number of price lists and number of price lists for items".          What is the reason. thanks and regards Rahul

  • Problem in the services order

    Hello, help me, please, my problem is when create a purchase order for services, from automatic purchase requisition( Create from network or maintenance order) the system ask me always the account when i click on folder of services. The account is al

  • Cannot click on certain parts of websites such has ( yes/no buttons, search boxs

    For instance when i change my default search engine to firefox it asked me if i wanted to help them by sending anonymous info about performance and there where 2 buttons to click on 1 yes and no i placed my cursor over button yes and left clicked not

  • Error with backlit keyboard

    Hi guys. I recently have some problems with my Macbook Pro (13-inch, Mid 2012) The keyboard light is turned off and I can't adjust the light brightness of this because F5 & F6 doesn't work. I go to System Preferences> Keyboard and I can't find any op

  • Cannot install "High Definition Audio Bus Driver"

    Hello, I have compaq V3000. I reformatted my pc and tried to reinstall all programs needed. Then I have problem with installation Audio Bus Driver. Now my pc has no sound and not support any program related to sound. info; - I have installed UAA driv